reduce tests memory consumption

This commit is contained in:
homm 2016-04-28 05:52:42 +03:00
parent 72766b8f4e
commit a9630ecb97

View File

@ -4,7 +4,7 @@ from helper import unittest, PillowTestCase
class TestJ2kEncodeOverflow(PillowTestCase):
def test_j2k_overflow(self):
im = Image.new('RGBA', (1024, 131584))
im = Image.new('RGBA', (32, 131584))
target = self.tempfile('temp.jpc')
try:
im.save(target)