From 413a086c09a5456ec13729cc4619707280de69bf Mon Sep 17 00:00:00 2001 From: wiredfool Date: Tue, 20 May 2014 10:13:48 -0700 Subject: [PATCH] Remove READ|WRITE_LIBTIFF guards for LZW/packbits compression tests --- Tests/test_file_libtiff.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Tests/test_file_libtiff.py b/Tests/test_file_libtiff.py index a53593a9e..58fa75239 100644 --- a/Tests/test_file_libtiff.py +++ b/Tests/test_file_libtiff.py @@ -258,9 +258,6 @@ def test_compressions(): im = lena('RGB') out = tempfile('temp.tif') - TiffImagePlugin.READ_LIBTIFF = True - TiffImagePlugin.WRITE_LIBTIFF = True - for compression in ('packbits', 'tiff_lzw'): im.save(out, compression=compression) im2 = Image.open(out) @@ -270,11 +267,6 @@ def test_compressions(): im2 = Image.open(out) assert_image_similar(im, im2, 30) - TiffImagePlugin.READ_LIBTIFF = False - TiffImagePlugin.WRITE_LIBTIFF = False - - - def test_cmyk_save(): im = lena('CMYK')