[Python-checkins] r60326 - python/trunk/Lib/test/test_zipfile.py
christian.heimes
python-checkins at python.org
Sat Jan 26 17:43:35 CET 2008
Author: christian.heimes
Date: Sat Jan 26 17:43:35 2008
New Revision: 60326
Modified:
python/trunk/Lib/test/test_zipfile.py
Log:
Unit test fix from Giampaolo Rodola, #1938
Modified: python/trunk/Lib/test/test_zipfile.py
==============================================================================
--- python/trunk/Lib/test/test_zipfile.py (original)
+++ python/trunk/Lib/test/test_zipfile.py Sat Jan 26 17:43:35 2008
@@ -316,6 +316,7 @@
correctfile = os.path.join(os.getcwd(), fpath[1:])
else:
correctfile = os.path.join(os.getcwd(), fpath)
+ correctfile = os.path.normpath(correctfile)
self.assertEqual(writtenfile, correctfile)
More information about the Python-checkins
mailing list