Skip to content

Commit

Permalink
Merge 6bf7f60 into fd4bd90
Browse files Browse the repository at this point in the history
  • Loading branch information
nulano committed Jan 1, 2020
2 parents fd4bd90 + 6bf7f60 commit 4d59f01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/test_file_wmf.py
Expand Up @@ -55,11 +55,11 @@ def test_load_dpi_rounding(self):

def test_load_set_dpi(self):
with Image.open("Tests/images/drawing.wmf") as im:
self.assertEquals(im.size, (82, 82))
self.assertEqual(im.size, (82, 82))

if hasattr(Image.core, "drawwmf"):
im.load(144)
self.assertEquals(im.size, (164, 164))
self.assertEqual(im.size, (164, 164))

with Image.open("Tests/images/drawing_wmf_ref_144.png") as expected:
self.assert_image_similar(im, expected, 2.0)
Expand Down

0 comments on commit 4d59f01

Please sign in to comment.