diff options
author | Gregory P. Smith <greg@krypto.org> | 2019-04-14 17:32:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-14 17:32:07 (GMT) |
commit | cd466559c4a312b3c1223a774ad4df19fc4f0407 (patch) | |
tree | a812fb133c41c2029859c0496fdee8935e72f972 | |
parent | 929b70473829f04dedb8e802abcbd506926886e1 (diff) | |
download | cpython-cd466559c4a312b3c1223a774ad4df19fc4f0407.zip cpython-cd466559c4a312b3c1223a774ad4df19fc4f0407.tar.gz cpython-cd466559c4a312b3c1223a774ad4df19fc4f0407.tar.bz2 |
bpo-16079: fix duplicate test method name in test_gzip. (GH-12827)
-rw-r--r-- | Lib/test/test_gzip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_gzip.py b/Lib/test/test_gzip.py index 2c8f854..3583b47 100644 --- a/Lib/test/test_gzip.py +++ b/Lib/test/test_gzip.py @@ -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)) |