mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
f041188050
Replace pattern with the builtin support for asserting exceptions.
15 lines
354 B
Python
15 lines
354 B
Python
from PIL import Image
|
|
from helper import unittest, PillowTestCase
|
|
|
|
|
|
class TestJ2kEncodeOverflow(PillowTestCase):
|
|
def test_j2k_overflow(self):
|
|
|
|
im = Image.new('RGBA', (1024, 131584))
|
|
target = self.tempfile('temp.jpc')
|
|
with self.assertRaises(IOError):
|
|
im.save(target)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|