Tests need to pass without imagemagick around

This commit is contained in:
wiredfool 2014-08-22 20:49:29 -07:00
parent 4e3bc5558d
commit b14e3daea1

View File

@ -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):