diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-23 19:32:48 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-23 19:32:48 (GMT) |
| commit | 89850314761cc755393ddac35989113f07681de0 (patch) | |
| tree | 48929585ded2a3b3060da069db617edc69dc1d6d /Lib/test/test_zipfile.py | |
| parent | 7fc92bb38a47f7da044847f8112e17201abf79bd (diff) | |
| parent | b4293efd930b37dbafcedc8ff937903dc7a26c44 (diff) | |
| download | cpython-89850314761cc755393ddac35989113f07681de0.zip cpython-89850314761cc755393ddac35989113f07681de0.tar.gz cpython-89850314761cc755393ddac35989113f07681de0.tar.bz2 | |
Issue #28115: ZIP creation test requires zlib.
Diffstat (limited to 'Lib/test/test_zipfile.py')
| -rw-r--r-- | Lib/test/test_zipfile.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_zipfile.py b/Lib/test/test_zipfile.py index fb3bbe4..0a43b20 100644 --- a/Lib/test/test_zipfile.py +++ b/Lib/test/test_zipfile.py @@ -2071,6 +2071,7 @@ class CommandLineTest(unittest.TestCase): PYTHONIOENCODING='ascii:backslashreplace') self.assertEqual(out, expected) + @requires_zlib def test_create_command(self): self.addCleanup(unlink, TESTFN) with open(TESTFN, 'w') as f: |
