Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed redundant arguments #4514

Merged
merged 1 commit into from Apr 2, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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