From c82bfd30cfed40dafab13c6c09a0c7f67b8e53aa Mon Sep 17 00:00:00 2001 From: wiredfool Date: Thu, 21 Nov 2013 22:15:34 -0800 Subject: [PATCH] cleanup temp file --- Tests/test_file_libtiff.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/test_file_libtiff.py b/Tests/test_file_libtiff.py index 128c7c873..be7a337ff 100644 --- a/Tests/test_file_libtiff.py +++ b/Tests/test_file_libtiff.py @@ -133,7 +133,7 @@ def test_little_endian(): out = tempfile("temp.tif") - out = "temp.le.tif" + #out = "temp.le.tif" im.save(out) reread = Image.open(out) @@ -224,8 +224,8 @@ def test_compressions(): im = lena('RGB') out = tempfile('temp.tif') - #TiffImagePlugin.READ_LIBTIFF = True - #TiffImagePlugin.WRITE_LIBTIFF = True + TiffImagePlugin.READ_LIBTIFF = True + TiffImagePlugin.WRITE_LIBTIFF = True for compression in ('packbits', 'tiff_lzw'): im.save(out, compression=compression)