Fix typos

This commit is contained in:
Hugo 2017-03-13 07:58:24 +02:00
parent 8b649d6e79
commit 1242b77872
5 changed files with 1 additions and 6 deletions

View File

@ -2,7 +2,6 @@ from helper import unittest, PillowTestCase
from PIL import Image, FliImagePlugin from PIL import Image, FliImagePlugin
# sample ppm stream
# created as an export of a palette image from Gimp2.6 # created as an export of a palette image from Gimp2.6
# save as...-> hopper.fli, default options. # save as...-> hopper.fli, default options.
test_file = "Tests/images/hopper.fli" test_file = "Tests/images/hopper.fli"

View File

@ -3,7 +3,6 @@ from helper import unittest, PillowTestCase, hopper
import io import io
from PIL import Image, IcoImagePlugin from PIL import Image, IcoImagePlugin
# sample ppm stream
TEST_ICO_FILE = "Tests/images/hopper.ico" TEST_ICO_FILE = "Tests/images/hopper.ico"

View File

@ -2,11 +2,10 @@ from helper import hopper, unittest, PillowTestCase
from PIL import Image, PixarImagePlugin from PIL import Image, PixarImagePlugin
# sample ppm stream
TEST_FILE = "Tests/images/hopper.pxr" TEST_FILE = "Tests/images/hopper.pxr"
class TestImagePsd(PillowTestCase): class TestFilePixar(PillowTestCase):
def test_sanity(self): def test_sanity(self):
im = Image.open(TEST_FILE) im = Image.open(TEST_FILE)

View File

@ -2,7 +2,6 @@ from helper import hopper, unittest, PillowTestCase
from PIL import Image, PsdImagePlugin from PIL import Image, PsdImagePlugin
# sample ppm stream
test_file = "Tests/images/hopper.psd" test_file = "Tests/images/hopper.psd"

View File

@ -2,7 +2,6 @@ from helper import unittest, PillowTestCase, hopper
from PIL import Image, XpmImagePlugin from PIL import Image, XpmImagePlugin
# sample ppm stream
TEST_FILE = "Tests/images/hopper.xpm" TEST_FILE = "Tests/images/hopper.xpm"