mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-27 17:54:32 +03:00
Fix filename on py2.6
This commit is contained in:
parent
9e1b4aba9a
commit
0bc06f7944
|
@ -466,7 +466,7 @@ class TestFileTiff(PillowTestCase):
|
||||||
def test_open_tiff_uint16(self):
|
def test_open_tiff_uint16(self):
|
||||||
# Test an image of all '0' values
|
# Test an image of all '0' values
|
||||||
pixel_value = 0x1234
|
pixel_value = 0x1234
|
||||||
infile = "Tests/images/uint16_1_{}.tif".format(pixel_value)
|
infile = "Tests/images/uint16_1_4660.tif"
|
||||||
im = Image.open(infile)
|
im = Image.open(infile)
|
||||||
self.assertEqual(im.getpixel((0, 0)), pixel_value)
|
self.assertEqual(im.getpixel((0, 0)), pixel_value)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user