From fa85f112cdaf2c971e66aa6c17de843e0bf67ab9 Mon Sep 17 00:00:00 2001 From: storesource <36395224+storesource@users.noreply.github.com> Date: Tue, 27 Mar 2018 19:31:58 +0530 Subject: [PATCH] Updating Test changing from equal to similar --- Tests/test_image_rotate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_image_rotate.py b/Tests/test_image_rotate.py index 1da0a70b7..edf8c516c 100644 --- a/Tests/test_image_rotate.py +++ b/Tests/test_image_rotate.py @@ -100,7 +100,7 @@ class TestImageRotate(PillowTestCase): def test_rotate_with_fill(self): im = hopper() target = Image.open('Tests/images/hopper45withfill.png') - self.assert_image_equal(im.rotate(45, fillcolor='white'), target) + self.assert_image_similar(im.rotate(45, fillcolor='white'), target, 1) if __name__ == '__main__':