From e3cb3074ce04a800259bd0762aecc47c3491c448 Mon Sep 17 00:00:00 2001 From: Sandro Mani Date: Fri, 22 Mar 2013 01:58:19 +0100 Subject: [PATCH] Add tempfile for test output --- Tests/test_file_tiff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_file_tiff.py b/Tests/test_file_tiff.py index 1b1e8457b..6db12c4ff 100644 --- a/Tests/test_file_tiff.py +++ b/Tests/test_file_tiff.py @@ -126,7 +126,7 @@ def test_g4_write(): file = "Tests/images/lena_g4_500.tif" orig = Image.open(file) - out = "temp.tif" + out = tempfile("temp.tif") rot = orig.transpose(Image.ROTATE_90) assert_equal(rot.size,(500,500)) rot.save(out)