8000 bpo-16079: fix duplicate test method name in test_gzip. (GH-12827) · python/cpython@9f9e029 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9f9e029

Browse files
bpo-16079: fix duplicate test method name in test_gzip. (GH-12827)
(cherry picked from commit cd46655) Co-authored-by: Gregory P. Smith <greg@krypto.org>
1 parent 7723d05 commit 9f9e029

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
@@ -735,7 +735,7 @@ def test_compress_stdin_outfile(self):
735735
self.assertEqual(out[:2], b"\x1f\x8b")
736736

737737
@create_and_remove_directory(TEMPDIR)
738-
def test_compress_infile_outfile(self):
738+
def test_compress_infile_outfile_default(self):
739739
local_testgzip = os.path.join(TEMPDIR, 'testgzip')
740740
gzipname = local_testgzip + '.gz'
741741
self.assertFalse(os.path.exists(gzipname))

0 commit comments

Comments
 (0)
0