diff --git a/Tests/test_imagepath.py b/Tests/test_imagepath.py index 8077f1a2a..0354b0fd9 100644 --- a/Tests/test_imagepath.py +++ b/Tests/test_imagepath.py @@ -74,7 +74,10 @@ class TestImagePath(PillowTestCase): x[i] = "0"*16 else: x[i] = b'0'*16 - + except TypeError as msg: + # Some pythons fail getting the argument as an integer, and + # it falls through to the sequence. Seeing this on 32bit windows. + self.assertTrue(True, "Sequence required") except MemoryError as msg: self.assertTrue(msg) except: