Updating Test

changing from equal to similar
This commit is contained in:
storesource 2018-03-27 19:31:58 +05:30 committed by GitHub
parent f358038968
commit fa85f112cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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__':