Merge pull request #4323 from nulano/wmf-warning

Fix deprecation warnings in test_file_wmf
This commit is contained in:
Andrew Murray 2020-01-01 12:47:56 +11:00 committed by GitHub
commit 94ec95c571
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,11 +55,11 @@ class TestFileWmf(PillowTestCase):
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)