Skip to content

Commit

Permalink
Rename tester.py to helper.py because it no longer drives the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jun 4, 2014
1 parent c8626c6 commit f14b928
Show file tree
Hide file tree
Showing 15 changed files with 14 additions and 14 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/test_000_sanity.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase
from helper import unittest, PillowTestCase

import PIL
import PIL.Image
Expand Down
2 changes: 1 addition & 1 deletion test/test_image_array.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase, lena
from helper import unittest, PillowTestCase, lena

from PIL import Image

Expand Down
2 changes: 1 addition & 1 deletion test/test_image_crop.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase, lena
from helper import unittest, PillowTestCase, lena

from PIL import Image

Expand Down
2 changes: 1 addition & 1 deletion test/test_image_filter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase, lena
from helper import unittest, PillowTestCase, lena

from PIL import Image
from PIL import ImageFilter
Expand Down
2 changes: 1 addition & 1 deletion test/test_image_frombytes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase, lena
from helper import unittest, PillowTestCase, lena

from PIL import Image

Expand Down
2 changes: 1 addition & 1 deletion test/test_image_getim.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase, lena, py3
from helper import unittest, PillowTestCase, lena, py3


class TestImageGetIm(PillowTestCase):
Expand Down
2 changes: 1 addition & 1 deletion test/test_image_histogram.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase, lena
from helper import unittest, PillowTestCase, lena


class TestImageHistogram(PillowTestCase):
Expand Down
2 changes: 1 addition & 1 deletion test/test_image_putdata.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase, lena
from helper import unittest, PillowTestCase, lena

import sys

Expand Down
2 changes: 1 addition & 1 deletion test/test_image_tobytes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, lena
from helper import unittest, lena


class TestImageToBytes(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion test/test_imagedraw.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase, lena
from helper import unittest, PillowTestCase, lena

from PIL import Image
from PIL import ImageColor
Expand Down
2 changes: 1 addition & 1 deletion test/test_imageenhance.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase, lena
from helper import unittest, PillowTestCase, lena

from PIL import Image
from PIL import ImageEnhance
Expand Down
2 changes: 1 addition & 1 deletion test/test_imagefilter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase
from helper import unittest, PillowTestCase

from PIL import ImageFilter

Expand Down
2 changes: 1 addition & 1 deletion test/test_imagestat.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase, lena
from helper import unittest, PillowTestCase, lena

from PIL import Image
from PIL import ImageStat
Expand Down
2 changes: 1 addition & 1 deletion test/test_lib_image.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import unittest, PillowTestCase
from helper import unittest, PillowTestCase

from PIL import Image

Expand Down

0 comments on commit f14b928

Please sign in to comment.