From: Gregory P. Smith Date: Sun, 14 Apr 2019 17:32:07 +0000 (-0700) Subject: bpo-16079: fix duplicate test method name in test_gzip. (GH-12827) X-Git-Tag: v3.8.0a4~183 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd466559c4a312b3c1223a774ad4df19fc4f0407;p=thirdparty%2FPython%2Fcpython.git bpo-16079: fix duplicate test method name in test_gzip. (GH-12827) --- diff --git a/Lib/test/test_gzip.py b/Lib/test/test_gzip.py index 2c8f854c6436..3583b47336fb 100644 --- a/Lib/test/test_gzip.py +++ b/Lib/test/test_gzip.py @@ -746,7 +746,7 @@ class TestCommandLine(unittest.TestCase): self.assertEqual(out[:2], b"\x1f\x8b") @create_and_remove_directory(TEMPDIR) - def test_compress_infile_outfile(self): + def test_compress_infile_outfile_default(self): local_testgzip = os.path.join(TEMPDIR, 'testgzip') gzipname = local_testgzip + '.gz' self.assertFalse(os.path.exists(gzipname))