mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-08-07 22:04:46 +03:00
Tests need to pass without imagemagick around
This commit is contained in:
parent
136345a5a5
commit
15b9d861ef
|
@ -26,8 +26,11 @@ class TestFilePalm(PillowTestCase):
|
||||||
outfile = self.tempfile("temp.palm")
|
outfile = self.tempfile("temp.palm")
|
||||||
|
|
||||||
im.save(outfile)
|
im.save(outfile)
|
||||||
converted = self.open_withImagemagick(outfile)
|
try:
|
||||||
self.assert_image_equal(converted, im)
|
converted = self.open_withImagemagick(outfile)
|
||||||
|
self.assert_image_equal(converted, im)
|
||||||
|
except IOError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
def test_monochrome(self):
|
def test_monochrome(self):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user