summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-05-10 21:27:55 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-05-10 21:27:55 (GMT)
commit2bb084e643dc423b8f3efb37e0136ae24e530c02 (patch)
tree485b5c7b4cd16bb3be1e67791e12fb8c4faf901b /Lib
parente1577fb20f662ad0565455f8d74366495c1d424b (diff)
downloadcpython-2bb084e643dc423b8f3efb37e0136ae24e530c02.zip
cpython-2bb084e643dc423b8f3efb37e0136ae24e530c02.tar.gz
cpython-2bb084e643dc423b8f3efb37e0136ae24e530c02.tar.bz2
fixed test_build_ext for win32
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/tests/test_build_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_build_ext.py b/Lib/distutils/tests/test_build_ext.py
index dab9712..54d6b96 100644
--- a/Lib/distutils/tests/test_build_ext.py
+++ b/Lib/distutils/tests/test_build_ext.py
@@ -192,7 +192,7 @@ class BuildExtTestCase(support.TempdirManager,
cmd = build_ext(dist)
cmd.library_dirs = 'my_lib_dir'
cmd.finalize_options()
- self.assertEquals(cmd.library_dirs, ['my_lib_dir'])
+ self.assert_('my_lib_dir' in cmd.library_dirs)
# make sure rpath is turned into a list
# if it's a list of os.pathsep's paths