From 1242b778720328ef5ef7ca051255401ec0947ccb Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 13 Mar 2017 07:58:24 +0200 Subject: [PATCH] Fix typos --- Tests/test_file_fli.py | 1 - Tests/test_file_ico.py | 1 - Tests/test_file_pixar.py | 3 +-- Tests/test_file_psd.py | 1 - Tests/test_file_xpm.py | 1 - 5 files changed, 1 insertion(+), 6 deletions(-) diff --git a/Tests/test_file_fli.py b/Tests/test_file_fli.py index a49301de1..a2ba0d03c 100644 --- a/Tests/test_file_fli.py +++ b/Tests/test_file_fli.py @@ -2,7 +2,6 @@ from helper import unittest, PillowTestCase from PIL import Image, FliImagePlugin -# sample ppm stream # created as an export of a palette image from Gimp2.6 # save as...-> hopper.fli, default options. test_file = "Tests/images/hopper.fli" diff --git a/Tests/test_file_ico.py b/Tests/test_file_ico.py index 3904340f3..4eb9435bd 100644 --- a/Tests/test_file_ico.py +++ b/Tests/test_file_ico.py @@ -3,7 +3,6 @@ from helper import unittest, PillowTestCase, hopper import io from PIL import Image, IcoImagePlugin -# sample ppm stream TEST_ICO_FILE = "Tests/images/hopper.ico" diff --git a/Tests/test_file_pixar.py b/Tests/test_file_pixar.py index 3078b438b..b6b3f934d 100644 --- a/Tests/test_file_pixar.py +++ b/Tests/test_file_pixar.py @@ -2,11 +2,10 @@ from helper import hopper, unittest, PillowTestCase from PIL import Image, PixarImagePlugin -# sample ppm stream TEST_FILE = "Tests/images/hopper.pxr" -class TestImagePsd(PillowTestCase): +class TestFilePixar(PillowTestCase): def test_sanity(self): im = Image.open(TEST_FILE) diff --git a/Tests/test_file_psd.py b/Tests/test_file_psd.py index 04a171cbb..cb5145f51 100644 --- a/Tests/test_file_psd.py +++ b/Tests/test_file_psd.py @@ -2,7 +2,6 @@ from helper import hopper, unittest, PillowTestCase from PIL import Image, PsdImagePlugin -# sample ppm stream test_file = "Tests/images/hopper.psd" diff --git a/Tests/test_file_xpm.py b/Tests/test_file_xpm.py index 5940620ba..d8cc4fa3a 100644 --- a/Tests/test_file_xpm.py +++ b/Tests/test_file_xpm.py @@ -2,7 +2,6 @@ from helper import unittest, PillowTestCase, hopper from PIL import Image, XpmImagePlugin -# sample ppm stream TEST_FILE = "Tests/images/hopper.xpm"