From 727868d5d7118ea3dff923d0df54d673792b2d5d Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 26 Apr 2020 08:03:16 +1000 Subject: [PATCH] Increased epsilon to pass on Windows --- 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 9db4f6358..3339cbfd3 100644 --- a/Tests/test_file_wmf.py +++ b/Tests/test_file_wmf.py @@ -66,7 +66,7 @@ def test_load_set_dpi(): assert im.size == (164, 164) with Image.open("Tests/images/drawing_wmf_ref_144.png") as expected: - assert_image_similar(im, expected, 2.0) + assert_image_similar(im, expected, 2.1) def test_save(tmp_path):