commit | 9b2415430e65d074b9fbdb024e76491547ca684a | [log] [tgz] |
---|---|---|
author | Christian Heimes <[email protected]> | Sat Jan 26 16:43:35 2008 +0000 |
committer | Christian Heimes <[email protected]> | Sat Jan 26 16:43:35 2008 +0000 |
tree | c972961a8418061d2b02fcc28b791b5ca69be6cc | |
parent | 1d1ec106ac4057f992dd3a1da9495c873319ab21 [diff] |
Unit test fix from Giampaolo Rodola, #1938
diff --git a/Lib/test/test_zipfile.py b/Lib/test/test_zipfile.py index adc0dc1..082b918 100644 --- a/Lib/test/test_zipfile.py +++ b/Lib/test/test_zipfile.py
@@ -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)