Commit cd466559 authored by Gregory P. Smith's avatar Gregory P. Smith Committed by GitHub

bpo-16079: fix duplicate test method name in test_gzip. (GH-12827)

parent 929b7047
......@@ -746,7 +746,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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment