mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-04-25 03:23:41 +03:00
fix deprecation warnings in test_file_wmf
This commit is contained in:
parent
fd4bd90c09
commit
6bf7f6045d
|
@ -55,11 +55,11 @@ class TestFileWmf(PillowTestCase):
|
||||||
|
|
||||||
def test_load_set_dpi(self):
|
def test_load_set_dpi(self):
|
||||||
with Image.open("Tests/images/drawing.wmf") as im:
|
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"):
|
if hasattr(Image.core, "drawwmf"):
|
||||||
im.load(144)
|
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:
|
with Image.open("Tests/images/drawing_wmf_ref_144.png") as expected:
|
||||||
self.assert_image_similar(im, expected, 2.0)
|
self.assert_image_similar(im, expected, 2.0)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user