Kaydet (Commit) d24cab8c authored tarafından Tarek Ziadé's avatar Tarek Ziadé

Issue #7218: Fix test_site for win32

üst 26a93c00
...@@ -169,7 +169,7 @@ class HelperFunctionsTests(unittest.TestCase): ...@@ -169,7 +169,7 @@ class HelperFunctionsTests(unittest.TestCase):
else: else:
self.assertTrue(len(dirs), 2) self.assertTrue(len(dirs), 2)
self.assertEquals(dirs[0], 'xoxo') 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) self.assertEquals(dirs[1], wanted)
# let's try the specific Apple location # let's try the specific Apple location
......
...@@ -427,6 +427,9 @@ Core and Builtins ...@@ -427,6 +427,9 @@ Core and Builtins
Library 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 - Issue #7205: Fix a possible deadlock when using a BZ2File object from
several threads at once. several threads at once.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment