diff --git a/Tests/check_large_memory_numpy.py b/Tests/check_large_memory_numpy.py index f0df1971877..62b823b68e5 100644 --- a/Tests/check_large_memory_numpy.py +++ b/Tests/check_large_memory_numpy.py @@ -46,6 +46,10 @@ def test_1475_b(self): a = np.zeros((36352, 18144), dtype=np.float) im = Image.fromarray(a, mode='F') + def test_1475_c(self): + a = np.zeros((31000, 30030, 3), dtype=np.uint8) + img = Image.fromarray(a, 'RGB') + if __name__ == '__main__': unittest.main()