diff --git a/Tests/test_imagefile.py b/Tests/test_imagefile.py index 485208c36..95ed0ee30 100644 --- a/Tests/test_imagefile.py +++ b/Tests/test_imagefile.py @@ -42,11 +42,11 @@ def test_parser(): assert_image_equal(*roundtrip("XBM")) #assert_image_equal(*roundtrip("EPS")) #no eps_decoder assert_image_equal(*roundtrip("TGA")) + assert_image_equal(*roundtrip("PCX")) im1, im2 = roundtrip("JPEG") # lossy compression assert_image(im1, im2.mode, im2.size) - assert_exception(IOError, lambda: roundtrip("PCX")) assert_exception(IOError, lambda: roundtrip("PDF"))