From 662a8a6c1a6ff840adda7e68652c6fc063514e7a Mon Sep 17 00:00:00 2001 From: paddywwoof Date: Sun, 11 Aug 2019 18:28:11 +0100 Subject: [PATCH] hopefully now pass all tests --- Tests/test_file_jpeg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_file_jpeg.py b/Tests/test_file_jpeg.py index a6309daf1..b253f6093 100644 --- a/Tests/test_file_jpeg.py +++ b/Tests/test_file_jpeg.py @@ -637,7 +637,7 @@ class TestFileJpeg(PillowTestCase): # This image has some corrupt exif offsets that unpack to values greater # than ssize_t on 32 bit systems im = Image.open("Tests/images/corrupt_exif.jpg") - assert im is not None # if previous line fails then im will be undefined + assert im is not None # if previous line fails, im will be undefined so assert fail def test_photoshop(self): im = Image.open("Tests/images/photoshop-200dpi.jpg")