[Python-checkins] r72553 - in python/branches/py3k: Lib/distutils/tests/test_build_ext.py

tarek.ziade python-checkins at python.org
Sun May 10 23:31:23 CEST 2009


Author: tarek.ziade
Date: Sun May 10 23:31:23 2009
New Revision: 72553

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 (Sun, 10 May 2009) | 1 line
  
  fixed test_build_ext for win32
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/distutils/tests/test_build_ext.py

Modified: python/branches/py3k/Lib/distutils/tests/test_build_ext.py
==============================================================================
--- python/branches/py3k/Lib/distutils/tests/test_build_ext.py	(original)
+++ python/branches/py3k/Lib/distutils/tests/test_build_ext.py	Sun May 10 23:31:23 2009
@@ -192,7 +192,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