Skip to content

Commit

Permalink
Merge pull request #4514 from radarhere/test_tell
Browse files Browse the repository at this point in the history
Removed redundant arguments
  • Loading branch information
hugovk committed Apr 2, 2020
2 parents e9afb39 + 6574552 commit feb787d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/test_file_png.py
Expand Up @@ -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)

Expand Down

0 comments on commit feb787d

Please sign in to comment.