Issue #7218: Fix test_site for win32

This commit is contained in:
Tarek Ziadé 2009-10-27 21:20:27 +00:00
parent 26a93c0082
commit d24cab8c74
2 changed files with 4 additions and 1 deletions

View File

@ -169,7 +169,7 @@ class HelperFunctionsTests(unittest.TestCase):
else:
self.assertTrue(len(dirs), 2)
self.assertEquals(dirs[0], 'xoxo')
wanted = os.path.join('xoxo', 'Lib', 'site-packages')
wanted = os.path.join('xoxo', 'lib', 'site-packages')
self.assertEquals(dirs[1], wanted)
# let's try the specific Apple location

View File

@ -427,6 +427,9 @@ Core and Builtins
Library
-------
- Issue #7218: Fix test_site for win32, the directory comparison was done with
an uppercase.
- Issue #7205: Fix a possible deadlock when using a BZ2File object from
several threads at once.