From a9630ecb971cbd837f5decfc019a4699d649ba36 Mon Sep 17 00:00:00 2001 From: homm Date: Thu, 28 Apr 2016 05:52:42 +0300 Subject: [PATCH] reduce tests memory consumption --- Tests/test_j2k_overflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_j2k_overflow.py b/Tests/test_j2k_overflow.py index de671a53f..4a5d67b7d 100644 --- a/Tests/test_j2k_overflow.py +++ b/Tests/test_j2k_overflow.py @@ -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)