mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
Merge: Fix copy-paste mistake in new zlib test.
This commit is contained in:
commit
beb552c97c
1 changed files with 4 additions and 2 deletions
|
@ -528,9 +528,11 @@ class CompressObjectTestCase(BaseCompressTestCase, unittest.TestCase):
|
|||
if size < _4G + 100:
|
||||
self.skipTest("not enough free memory, need at least 4 GB")
|
||||
data = b'x' * size
|
||||
c = zlib.compressobj(1)
|
||||
d = zlib.decompressobj()
|
||||
try:
|
||||
self.assertRaises(OverflowError, zlib.compress, data, 1)
|
||||
self.assertRaises(OverflowError, zlib.decompress, data)
|
||||
self.assertRaises(OverflowError, c.compress, data)
|
||||
self.assertRaises(OverflowError, d.decompress, data)
|
||||
finally:
|
||||
data = None
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue