From 8c0e217158cac54fd32fb3b61e715f6a79e55209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tarek=20Ziad=C3=A9?= Date: Tue, 27 Oct 2009 21:24:21 +0000 Subject: Merged revisions 75871 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r75871 | tarek.ziade | 2009-10-27 22:20:27 +0100 (Tue, 27 Oct 2009) | 1 line Issue #7218: Fix test_site for win32 ........ --- Lib/test/test_site.py | 2 +- Misc/NEWS | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index 6935798..ffdeab6 100644 --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -168,7 +168,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 diff --git a/Misc/NEWS b/Misc/NEWS index 9707276..edbe964 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -117,6 +117,9 @@ C-API 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. -- cgit v0.12