From 7b00364e18d60a139fce25397f0d7b8667b8e5cd Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 30 Mar 2015 01:32:42 +0200 Subject: Issue #22390: Fix test_gzip, remove temporary file --- Lib/test/test_gzip.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_gzip.py b/Lib/test/test_gzip.py index 41857c7..95f5141 100644 --- a/Lib/test/test_gzip.py +++ b/Lib/test/test_gzip.py @@ -41,6 +41,7 @@ class TestGzip(unittest.TestCase): @test_support.requires_unicode def test_unicode_filename(self): unicode_filename = test_support.TESTFN_UNICODE + self.filename = unicode_filename try: unicode_filename.encode(test_support.TESTFN_ENCODING) except (UnicodeError, TypeError): -- cgit v0.12