mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-05-31 19:23:16 +03:00
Merge pull request #4323 from nulano/wmf-warning
Fix deprecation warnings in test_file_wmf
This commit is contained in:
commit
94ec95c571
|
@ -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