From 6038af4e8bd33bbe3a82cf5b9382d8a36465eae2 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Sun, 14 Apr 2019 10:16:08 -0700 Subject: [PATCH] bpo-16079: fix duplicate test method name in test_gzip. --- Lib/test/test_gzip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_gzip.py b/Lib/test/test_gzip.py index 2c8f854c643670..3583b47336fb9f 100644 --- a/Lib/test/test_gzip.py +++ b/Lib/test/test_gzip.py @@ -746,7 +746,7 @@ def test_compress_stdin_outfile(self): 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))