[Python-checkins] r72554 - in python/branches/release26-maint: Lib/distutils/tests/test_build_ext.py
tarek.ziade
python-checkins at python.org
Sun May 10 23:33:10 CEST 2009
Author: tarek.ziade
Date: Sun May 10 23:33:09 2009
New Revision: 72554
Log:
Merged revisions 72552 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72552 | tarek.ziade | 2009年05月10日 23:27:55 +0200 (2009年5月10日) | 1 line
fixed test_build_ext for win32
........
Modified:
python/branches/release26-maint/ (props changed)
python/branches/release26-maint/Lib/distutils/tests/test_build_ext.py
Modified: python/branches/release26-maint/Lib/distutils/tests/test_build_ext.py
==============================================================================
--- python/branches/release26-maint/Lib/distutils/tests/test_build_ext.py (original)
+++ python/branches/release26-maint/Lib/distutils/tests/test_build_ext.py Sun May 10 23:33:09 2009
@@ -129,7 +129,7 @@
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
More information about the Python-checkins
mailing list