mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-13 05:06:49 +03:00
Add test for #1524.
This commit is contained in:
parent
423e381b7c
commit
b496f37e1f
|
@ -115,6 +115,11 @@ class TestFileTiff(PillowTestCase):
|
||||||
self.fail(
|
self.fail(
|
||||||
"Bad EXIF data passed incorrect values to _binary unpack")
|
"Bad EXIF data passed incorrect values to _binary unpack")
|
||||||
|
|
||||||
|
def test_save_rgba(self):
|
||||||
|
im = hopper("RGBA")
|
||||||
|
outfile = self.tempfile("temp.tif")
|
||||||
|
im.save(outfile)
|
||||||
|
|
||||||
def test_save_unsupported_mode(self):
|
def test_save_unsupported_mode(self):
|
||||||
im = hopper("HSV")
|
im = hopper("HSV")
|
||||||
outfile = self.tempfile("temp.tif")
|
outfile = self.tempfile("temp.tif")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user