Remove redundant assert and message

This commit is contained in:
Hugo 2017-01-30 15:32:31 +02:00 committed by wiredfool
parent 38c6771be0
commit 8840f2b0fb

View File

@ -42,8 +42,7 @@ class TestFileMsp(PillowTestCase):
im = Image.open(TEST_FILE)
# Assert
self.assertEqual(im.size, (128, 128))
self.assert_image_equal(im, hopper("1"), 4)
self.assert_image_equal(im, hopper("1"))
self.assertIsInstance(im, MspImagePlugin.MspImageFile)
@unittest.skipIf(not os.path.exists(EXTRA_DIR),