Skip to content

Commit

Permalink
Renamed argument
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Aug 23, 2022
1 parent 0ed03d4 commit 1c391fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/test_file_apng.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def open():


@pytest.mark.parametrize(
"f",
"test_file",
(
"sequence_start.png",
"sequence_gap.png",
Expand All @@ -337,9 +337,9 @@ def open():
"sequence_fdat_fctl.png",
),
)
def test_apng_sequence_errors(f):
def test_apng_sequence_errors(test_file):
with pytest.raises(SyntaxError):
with Image.open(f"Tests/images/apng/{f}") as im:
with Image.open(f"Tests/images/apng/{test_file}") as im:
im.seek(im.n_frames - 1)
im.load()

Expand Down

0 comments on commit 1c391fe

Please sign in to comment.