diff --git a/test/test_bmp_reference.py b/test/test_bmp_reference.py index ed012e7c8..ce621b38a 100644 --- a/test/test_bmp_reference.py +++ b/test/test_bmp_reference.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image import os diff --git a/test/test_file_fli.py b/test/test_file_fli.py index dd22a58f9..3479a4271 100644 --- a/test/test_file_fli.py +++ b/test/test_file_fli.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image diff --git a/test/test_file_icns.py b/test/test_file_icns.py index 9d838620b..d65af2ecf 100644 --- a/test/test_file_icns.py +++ b/test/test_file_icns.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image diff --git a/test/test_file_ico.py b/test/test_file_ico.py index dc289e1d2..9e524561c 100644 --- a/test/test_file_ico.py +++ b/test/test_file_ico.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image diff --git a/test/test_file_psd.py b/test/test_file_psd.py index de3d6f33d..b30b95bff 100644 --- a/test/test_file_psd.py +++ b/test/test_file_psd.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image diff --git a/test/test_file_xbm.py b/test/test_file_xbm.py index 02aec70b1..0a4f50a49 100644 --- a/test/test_file_xbm.py +++ b/test/test_file_xbm.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image diff --git a/test/test_file_xpm.py b/test/test_file_xpm.py index ecbb4137a..c74232812 100644 --- a/test/test_file_xpm.py +++ b/test/test_file_xpm.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image diff --git a/test/test_font_bdf.py b/test/test_font_bdf.py index b141e6149..9e6a38dd9 100644 --- a/test/test_font_bdf.py +++ b/test/test_font_bdf.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import FontFile, BdfFontFile diff --git a/test/test_format_lab.py b/test/test_format_lab.py index 53468db5f..36e84801e 100644 --- a/test/test_format_lab.py +++ b/test/test_format_lab.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image diff --git a/test/test_image_array.py b/test/test_image_array.py index a0f5f29e1..3e30019fe 100644 --- a/test/test_image_array.py +++ b/test/test_image_array.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image diff --git a/test/test_image_copy.py b/test/test_image_copy.py index a7882db94..7c668a464 100644 --- a/test/test_image_copy.py +++ b/test/test_image_copy.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image diff --git a/test/test_image_crop.py b/test/test_image_crop.py index da93fe7c8..bcb097e25 100644 --- a/test/test_image_crop.py +++ b/test/test_image_crop.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image diff --git a/test/test_image_filter.py b/test/test_image_filter.py index 4a85b0a2e..373d48356 100644 --- a/test/test_image_filter.py +++ b/test/test_image_filter.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image from PIL import ImageFilter diff --git a/test/test_image_frombytes.py b/test/test_image_frombytes.py index aad8046a1..92885f9a9 100644 --- a/test/test_image_frombytes.py +++ b/test/test_image_frombytes.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image diff --git a/test/test_image_getbands.py b/test/test_image_getbands.py index e803abb02..03ff3914b 100644 --- a/test/test_image_getbands.py +++ b/test/test_image_getbands.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image diff --git a/test/test_image_getbbox.py b/test/test_image_getbbox.py index 83a6a3dec..1f01bcee3 100644 --- a/test/test_image_getbbox.py +++ b/test/test_image_getbbox.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image diff --git a/test/test_image_getcolors.py b/test/test_image_getcolors.py index cfc827b28..13c10ad86 100644 --- a/test/test_image_getcolors.py +++ b/test/test_image_getcolors.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena class TestImage(PillowTestCase): diff --git a/test/test_image_getextrema.py b/test/test_image_getextrema.py index af7f7698a..77521294e 100644 --- a/test/test_image_getextrema.py +++ b/test/test_image_getextrema.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena class TestImageGetExtrema(PillowTestCase): diff --git a/test/test_image_getim.py b/test/test_image_getim.py index d498d3923..47283d97b 100644 --- a/test/test_image_getim.py +++ b/test/test_image_getim.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena, py3 +from test.helper import unittest, PillowTestCase, lena, py3 class TestImageGetIm(PillowTestCase): diff --git a/test/test_image_getpalette.py b/test/test_image_getpalette.py index 0c399c432..d9184412a 100644 --- a/test/test_image_getpalette.py +++ b/test/test_image_getpalette.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena class TestImageGetPalette(PillowTestCase): diff --git a/test/test_image_histogram.py b/test/test_image_histogram.py index 70f78a1fb..4a0981009 100644 --- a/test/test_image_histogram.py +++ b/test/test_image_histogram.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena class TestImageHistogram(PillowTestCase): diff --git a/test/test_image_load.py b/test/test_image_load.py index 2001c233a..9c6f09388 100644 --- a/test/test_image_load.py +++ b/test/test_image_load.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image diff --git a/test/test_image_mode.py b/test/test_image_mode.py index d229a27a2..2c1bac609 100644 --- a/test/test_image_mode.py +++ b/test/test_image_mode.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image diff --git a/test/test_image_offset.py b/test/test_image_offset.py index bb9b5a38c..146e0af9c 100644 --- a/test/test_image_offset.py +++ b/test/test_image_offset.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena class TestImage(PillowTestCase): diff --git a/test/test_image_putalpha.py b/test/test_image_putalpha.py index 85c7ac262..0ea1215f9 100644 --- a/test/test_image_putalpha.py +++ b/test/test_image_putalpha.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image diff --git a/test/test_image_putdata.py b/test/test_image_putdata.py index c7c3115aa..be8e6bc22 100644 --- a/test/test_image_putdata.py +++ b/test/test_image_putdata.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena import sys diff --git a/test/test_image_putpalette.py b/test/test_image_putpalette.py index b77dcbf00..d6daaa42b 100644 --- a/test/test_image_putpalette.py +++ b/test/test_image_putpalette.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import ImagePalette diff --git a/test/test_image_quantize.py b/test/test_image_quantize.py index 35f876717..c1bbdd134 100644 --- a/test/test_image_quantize.py +++ b/test/test_image_quantize.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image diff --git a/test/test_image_resize.py b/test/test_image_resize.py index 6c9932e45..62cd971c5 100644 --- a/test/test_image_resize.py +++ b/test/test_image_resize.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena class TestImageResize(PillowTestCase): diff --git a/test/test_image_rotate.py b/test/test_image_rotate.py index 531fdd63f..e00b5a4c5 100644 --- a/test/test_image_rotate.py +++ b/test/test_image_rotate.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena class TestImageRotate(PillowTestCase): diff --git a/test/test_image_thumbnail.py b/test/test_image_thumbnail.py index ee49be43e..1ab06d360 100644 --- a/test/test_image_thumbnail.py +++ b/test/test_image_thumbnail.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena class TestImageThumbnail(PillowTestCase): diff --git a/test/test_image_tobitmap.py b/test/test_image_tobitmap.py index 4e2a16df0..e7a66e712 100644 --- a/test/test_image_tobitmap.py +++ b/test/test_image_tobitmap.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena, fromstring +from test.helper import unittest, PillowTestCase, lena, fromstring class TestImage(PillowTestCase): diff --git a/test/test_image_tobytes.py b/test/test_image_tobytes.py index 3be9128c1..e1bfa29fd 100644 --- a/test/test_image_tobytes.py +++ b/test/test_image_tobytes.py @@ -1,4 +1,4 @@ -from helper import unittest, lena +from test.helper import unittest, lena class TestImageToBytes(unittest.TestCase): diff --git a/test/test_image_transform.py b/test/test_image_transform.py index 6ab186c12..1cf84c521 100644 --- a/test/test_image_transform.py +++ b/test/test_image_transform.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image diff --git a/test/test_imagechops.py b/test/test_imagechops.py index ec162d52f..5ffc02feb 100644 --- a/test/test_imagechops.py +++ b/test/test_imagechops.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image from PIL import ImageChops diff --git a/test/test_imagecms.py b/test/test_imagecms.py index 1a31636e8..7e59184dd 100644 --- a/test/test_imagecms.py +++ b/test/test_imagecms.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image diff --git a/test/test_imagecolor.py b/test/test_imagecolor.py index 5d8944852..2c41d0765 100644 --- a/test/test_imagecolor.py +++ b/test/test_imagecolor.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, lena from PIL import Image from PIL import ImageColor diff --git a/test/test_imagedraw.py b/test/test_imagedraw.py index 98876296f..9d5d575c5 100644 --- a/test/test_imagedraw.py +++ b/test/test_imagedraw.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image from PIL import ImageColor diff --git a/test/test_imageenhance.py b/test/test_imageenhance.py index 433c49cf6..d05f94655 100644 --- a/test/test_imageenhance.py +++ b/test/test_imageenhance.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image from PIL import ImageEnhance diff --git a/test/test_imagefileio.py b/test/test_imagefileio.py index 32ee0bc5e..4f96181ca 100644 --- a/test/test_imagefileio.py +++ b/test/test_imagefileio.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena, tostring +from test.helper import unittest, PillowTestCase, lena, tostring from PIL import Image from PIL import ImageFileIO diff --git a/test/test_imagefilter.py b/test/test_imagefilter.py index f7edb409a..19bd1a874 100644 --- a/test/test_imagefilter.py +++ b/test/test_imagefilter.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import ImageFilter diff --git a/test/test_imagefont.py b/test/test_imagefont.py index 17cb38cc2..2024ef2eb 100644 --- a/test/test_imagefont.py +++ b/test/test_imagefont.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image from PIL import ImageDraw diff --git a/test/test_imagegrab.py b/test/test_imagegrab.py index 2275d34a1..a3c7db9fc 100644 --- a/test/test_imagegrab.py +++ b/test/test_imagegrab.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase try: from PIL import ImageGrab diff --git a/test/test_imagemath.py b/test/test_imagemath.py index 17d43d25a..06b6dea08 100644 --- a/test/test_imagemath.py +++ b/test/test_imagemath.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image from PIL import ImageMath diff --git a/test/test_imagemode.py b/test/test_imagemode.py index 7fb596b46..c8480ec3f 100644 --- a/test/test_imagemode.py +++ b/test/test_imagemode.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import ImageMode diff --git a/test/test_imageops.py b/test/test_imageops.py index a4a94ca4d..e904b06ce 100644 --- a/test/test_imageops.py +++ b/test/test_imageops.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import ImageOps diff --git a/test/test_imageshow.py b/test/test_imageshow.py index 12594c98f..27af375e7 100644 --- a/test/test_imageshow.py +++ b/test/test_imageshow.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image from PIL import ImageShow diff --git a/test/test_imagestat.py b/test/test_imagestat.py index 4d30ff023..b15ee8000 100644 --- a/test/test_imagestat.py +++ b/test/test_imagestat.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase from PIL import Image from PIL import ImageStat diff --git a/test/test_imagetk.py b/test/test_imagetk.py index 87a07e288..aa10df0f4 100644 --- a/test/test_imagetk.py +++ b/test/test_imagetk.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase class TestImageTk(PillowTestCase): diff --git a/test/test_imagetransform.py b/test/test_imagetransform.py index f5741df32..5d7fc657f 100644 --- a/test/test_imagetransform.py +++ b/test/test_imagetransform.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image from PIL import ImageTransform diff --git a/test/test_imagewin.py b/test/test_imagewin.py index 916abc77b..a3ca7ee98 100644 --- a/test/test_imagewin.py +++ b/test/test_imagewin.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image from PIL import ImageWin diff --git a/test/test_lib_image.py b/test/test_lib_image.py index e0a903b00..99d1aa9b0 100644 --- a/test/test_lib_image.py +++ b/test/test_lib_image.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase +from test.helper import unittest, PillowTestCase from PIL import Image diff --git a/test/test_lib_pack.py b/test/test_lib_pack.py index 102835b58..d0162dbcb 100644 --- a/test/test_lib_pack.py +++ b/test/test_lib_pack.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, py3 +from test.helper import unittest, PillowTestCase, py3 from PIL import Image diff --git a/test/test_locale.py b/test/test_locale.py index 599e46266..77774dc31 100644 --- a/test/test_locale.py +++ b/test/test_locale.py @@ -1,4 +1,4 @@ -from helper import unittest, PillowTestCase, lena +from test.helper import unittest, PillowTestCase, lena from PIL import Image