commit | 91f0359ee4fc067e4fb6fcdfaa5e8258333e68a9 | [log] [tgz] |
---|---|---|
author | Eric V. Smith <eric@trueblade.com> | Mon Mar 14 11:57:16 2011 -0400 |
committer | Eric V. Smith <eric@trueblade.com> | Mon Mar 14 11:57:16 2011 -0400 |
tree | b509c342e831d81103f5509c842323c40b3a4f14 | |
parent | 4169826a00bc786185cfce9371a3ba15157bf928 [diff] [blame] |
Skip test if zlib not present. Closes #11498. Patch by Natalia B. Bidart.
diff --git a/Lib/test/test_zipfile.py b/Lib/test/test_zipfile.py index 8d51528..90aab86 100644 --- a/Lib/test/test_zipfile.py +++ b/Lib/test/test_zipfile.py
@@ -489,6 +489,7 @@ except zipfile.BadZipFile: self.assertTrue(zipfp2.fp is None, 'zipfp is not closed') + @skipUnless(zlib, "requires zlib") def test_unicode_filenames(self): # bug #10801 fname = findfile('zip_cp437_header.zip')