Skip to content

Commit feb787d

Browse files
authored
Merge pull request #4514 from radarhere/test_tell
Removed redundant arguments
2 parents e9afb39 + 6574552 commit feb787d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tests/test_file_png.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -629,11 +629,11 @@ def test_exif_argument(self, tmp_path):
629629
with Image.open(test_file) as reloaded:
630630
assert reloaded.info["exif"] == b"Exif\x00\x00exifstring"
631631

632-
def test_tell(self, tmp_path):
632+
def test_tell(self):
633633
with Image.open(TEST_PNG_FILE) as im:
634634
assert im.tell() == 0
635635

636-
def test_seek(self, tmp_path):
636+
def test_seek(self):
637637
with Image.open(TEST_PNG_FILE) as im:
638638
im.seek(0)
639639

0 commit comments

Comments
 (0)