mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-27 18:36:17 +03:00
Tests need to pass without imagemagick around
This commit is contained in:
parent
4e3bc5558d
commit
b14e3daea1
|
@ -26,8 +26,11 @@ class TestFilePalm(PillowTestCase):
|
|||
outfile = self.tempfile("temp.palm")
|
||||
|
||||
im.save(outfile)
|
||||
converted = self.open_withImagemagick(outfile)
|
||||
self.assert_image_equal(converted, im)
|
||||
try:
|
||||
converted = self.open_withImagemagick(outfile)
|
||||
self.assert_image_equal(converted, im)
|
||||
except IOError:
|
||||
pass
|
||||
|
||||
|
||||
def test_monochrome(self):
|
||||
|
|
Loading…
Reference in New Issue
Block a user