From 0fd17488eda95ac6a2ee122bd61d5705b0e566c6 Mon Sep 17 00:00:00 2001 From: aagaidiu Date: Fri, 25 Nov 2016 16:02:01 -0800 Subject: [PATCH] Use similarity epsilon 0.5 for WMF, as vector rendering looks different across Windows platforms --- Tests/test_file_wmf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_file_wmf.py b/Tests/test_file_wmf.py index 2b075c26f..5e44f31b1 100644 --- a/Tests/test_file_wmf.py +++ b/Tests/test_file_wmf.py @@ -25,7 +25,7 @@ class TestFileWmf(PillowTestCase): # Compare to reference rendering imref = Image.open('Tests/images/drawing_wmf_ref.png') imref.load() - self.assert_image_similar(im, imref, 0) + self.assert_image_similar(im, imref, 0.5) if __name__ == '__main__':