Skip to content

Commit cd46655

Browse files
authored
bpo-16079: fix duplicate test method name in test_gzip. (GH-12827)
1 parent 929b704 commit cd46655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_gzip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ def test_compress_stdin_outfile(self):
746746
self.assertEqual(out[:2], b"\x1f\x8b")
747747

748748
@create_and_remove_directory(TEMPDIR)
749-
def test_compress_infile_outfile(self):
749+
def test_compress_infile_outfile_default(self):
750750
local_testgzip = os.path.join(TEMPDIR, 'testgzip')
751751
gzipname = local_testgzip + '.gz'
752752
self.assertFalse(os.path.exists(gzipname))

0 commit comments

Comments
 (0)