]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-16079: fix duplicate test method name in test_gzip. (GH-12827)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 14 Apr 2019 17:50:52 +0000 (10:50 -0700)
committerGitHub <noreply@github.com>
Sun, 14 Apr 2019 17:50:52 +0000 (10:50 -0700)
(cherry picked from commit cd466559c4a312b3c1223a774ad4df19fc4f0407)

Co-authored-by: Gregory P. Smith <greg@krypto.org>
Lib/test/test_gzip.py

index b072ce4682c0fed78d7474505785402cbc3c0f39..17ecda2089f250940a60f64d5f31350a1cd27767 100644 (file)
@@ -735,7 +735,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))