From 8840f2b0fb1cdd7acd0ac0ac0389a5a5c1530445 Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 30 Jan 2017 15:32:31 +0200 Subject: [PATCH] Remove redundant assert and message --- Tests/test_file_msp.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Tests/test_file_msp.py b/Tests/test_file_msp.py index 721b4425e..e0b059037 100644 --- a/Tests/test_file_msp.py +++ b/Tests/test_file_msp.py @@ -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),