diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-02-20 21:42:18 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-02-20 21:42:18 (GMT) |
commit | 32cbc96150e4799d24ff04071f518e48b29f60a0 (patch) | |
tree | ceab895133fcdac0e2e4ac61fc4f4de15df2729b /Lib/test | |
parent | 124a4e58c497f6bfdb2e26465b8b3940393a3b29 (diff) | |
download | cpython-32cbc96150e4799d24ff04071f518e48b29f60a0.zip cpython-32cbc96150e4799d24ff04071f518e48b29f60a0.tar.gz cpython-32cbc96150e4799d24ff04071f518e48b29f60a0.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_zipfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_zipfile.py b/Lib/test/test_zipfile.py index 9fadc30..0241348 100644 --- a/Lib/test/test_zipfile.py +++ b/Lib/test/test_zipfile.py @@ -53,7 +53,7 @@ class TestsWithSourceFile(unittest.TestCase): zipfp = zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_STORED) self.assertEqual(zipfp.namelist(), ["absolute"]) zipfp.close() - + def tearDown(self): os.remove(TESTFN) |