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

This commit is contained in:
Gregory P. Smith 2019-04-14 10:32:07 -07:00 committed by GitHub
parent 929b704738
commit cd466559c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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))