From: Éric Araujo Date: Wed, 15 Feb 2012 17:14:50 +0000 (+0100) Subject: Fix for packaging test failure on shared builds (#1326113) X-Git-Tag: v3.3.0a1~175 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43df889d63707081bca200db9c33f3d79ed616ad;p=python Fix for packaging test failure on shared builds (#1326113) --- diff --git a/Lib/packaging/tests/test_command_build_ext.py b/Lib/packaging/tests/test_command_build_ext.py index 161b00081d..9a00c116a5 100644 --- a/Lib/packaging/tests/test_command_build_ext.py +++ b/Lib/packaging/tests/test_command_build_ext.py @@ -150,7 +150,8 @@ class BuildExtTestCase(support.TempdirManager, cmd = build_ext(dist) cmd.library_dirs = 'my_lib_dir%sother_lib_dir' % os.pathsep cmd.finalize_options() - self.assertEqual(cmd.library_dirs, ['my_lib_dir', 'other_lib_dir']) + self.assertIn('my_lib_dir', cmd.library_dirs) + self.assertIn('other_lib_dir', cmd.library_dirs) # make sure rpath is turned into a list # if it's a string