Merge pull request #4588 from radarhere/dpi

Increased epsilon to pass on Windows
This commit is contained in:
Hugo van Kemenade 2020-04-26 11:19:57 +03:00 committed by GitHub
commit 26ab232f2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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):