small test image for I;16 => F conversion

This commit is contained in:
wiredfool 2013-07-08 23:26:45 -07:00
parent 993e075c0d
commit 5b269a6ab7
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -39,11 +39,11 @@ def test_8bit():
_test_float_conversion(im.convert('L'))
def test_12bit():
im = Image.open('Tests/images/12bit.tif')
im = Image.open('Tests/images/12bit.cropped.tif')
_test_float_conversion(im)
def test_12bit_workaround():
im = Image.open('Tests/images/12bit.tif')
im = Image.open('Tests/images/12bit.cropped.tif')
_test_float_conversion(im.convert('I'))