summaryrefslogtreecommitdiff
path: root/lang/python26/files/patch-Lib-test-test_zlib.py
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-04-25 08:16:04 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-04-25 08:16:04 +0000
commit87262d65c47c91e2713e485a3d513f6e47086a87 (patch)
treed65fe1a4422d188b4d15cbc5647ce54879a93b20 /lang/python26/files/patch-Lib-test-test_zlib.py
parent0af08ff3ddcf2240bacb758f8c70071a85203643 (diff)
Notes
Diffstat (limited to 'lang/python26/files/patch-Lib-test-test_zlib.py')
-rw-r--r--lang/python26/files/patch-Lib-test-test_zlib.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/lang/python26/files/patch-Lib-test-test_zlib.py b/lang/python26/files/patch-Lib-test-test_zlib.py
new file mode 100644
index 000000000000..425572d2574d
--- /dev/null
+++ b/lang/python26/files/patch-Lib-test-test_zlib.py
@@ -0,0 +1,14 @@
+--- Lib/test/test_zlib.py 2008/04/08 23:47:30 62234
++++ Lib/test/test_zlib.py 2008/04/09 00:25:17 62235
+@@ -83,6 +83,11 @@
+ # verify failure on building decompress object with bad params
+ self.assertRaises(ValueError, zlib.decompressobj, 0)
+
++ def test_decompressobj_badflush(self):
++ # verify failure on calling decompressobj.flush with bad params
++ self.assertRaises(ValueError, zlib.decompressobj().flush, 0)
++ self.assertRaises(ValueError, zlib.decompressobj().flush, -1)
++
+
+
+ class CompressTestCase(unittest.TestCase):