From 6574552821e0d85c2269e307e7396727e59f566e Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Thu, 2 Apr 2020 19:17:54 +1100 Subject: [PATCH] Removed redundant arguments --- Tests/test_file_png.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/test_file_png.py b/Tests/test_file_png.py index f4b0de81bc1..469d186e816 100644 --- a/Tests/test_file_png.py +++ b/Tests/test_file_png.py @@ -629,11 +629,11 @@ def test_exif_argument(self, tmp_path): with Image.open(test_file) as reloaded: assert reloaded.info["exif"] == b"Exif\x00\x00exifstring" - def test_tell(self, tmp_path): + def test_tell(self): with Image.open(TEST_PNG_FILE) as im: assert im.tell() == 0 - def test_seek(self, tmp_path): + def test_seek(self): with Image.open(TEST_PNG_FILE) as im: im.seek(0)