diff options
Diffstat (limited to 'Lib/test/test_gzip.py')
-rw-r--r-- | Lib/test/test_gzip.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Lib/test/test_gzip.py b/Lib/test/test_gzip.py index 08f7f3f..0010112 100644 --- a/Lib/test/test_gzip.py +++ b/Lib/test/test_gzip.py @@ -25,13 +25,10 @@ class TestGzip(unittest.TestCase): filename = test_support.TESTFN def setUp (self): - pass + test_support.unlink(self.filename) def tearDown (self): - try: - os.unlink(self.filename) - except os.error: - pass + test_support.unlink(self.filename) def test_write (self): |