mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
Add test for #1524.
This commit is contained in:
parent
423e381b7c
commit
b496f37e1f
|
@ -115,6 +115,11 @@ class TestFileTiff(PillowTestCase):
|
|||
self.fail(
|
||||
"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):
|
||||
im = hopper("HSV")
|
||||
outfile = self.tempfile("temp.tif")
|
||||
|
|
Loading…
Reference in New Issue
Block a user