Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
bpo-16079: fix duplicate test method name in test_gzip.
  • Loading branch information
gpshead committed Apr 14, 2019
commit 6038af4e8bd33bbe3a82cf5b9382d8a36465eae2
2 changes: 1 addition & 1 deletion Lib/test/test_gzip.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down