Replace lena.rgb and lena.bw with hopper

This commit is contained in:
hugovk 2014-09-04 10:31:16 +03:00
parent 513422323b
commit b451c6f410
3 changed files with 4 additions and 4 deletions

Binary file not shown.

Binary file not shown.

View File

@ -8,8 +8,8 @@ class TestFileSgi(PillowTestCase):
def test_rgb(self):
# Arrange
# Created with ImageMagick then renamed:
# convert lena.ppm lena.sgi
test_file = "Tests/images/lena.rgb"
# convert hopper.ppm hopper.sgi
test_file = "Tests/images/hopper.rgb"
# Act / Assert
self.assertRaises(ValueError, lambda: Image.open(test_file))
@ -17,8 +17,8 @@ class TestFileSgi(PillowTestCase):
def test_l(self):
# Arrange
# Created with ImageMagick then renamed:
# convert lena.ppm -monochrome lena.sgi
test_file = "Tests/images/lena.bw"
# convert hopper.ppm -monochrome hopper.sgi
test_file = "Tests/images/hopper.bw"
# Act / Assert
self.assertRaises(ValueError, lambda: Image.open(test_file))