Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Feb 1, 2025
1 parent 6b09c64 commit 75342b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/test_file_avif.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ def test_write_animation_P(self, tmp_path: Path) -> None:
count, and ensure the frames are visually similar to the originals.
"""

with Image.open("Tests/images/avif/star.gif") as orig:
with Image.open("Tests/images/avif/star.gif") as original:
assert original.n_frames > 1

temp_file = str(tmp_path / "temp.avif")
Expand All @@ -608,7 +608,7 @@ def test_write_animation_P(self, tmp_path: Path) -> None:
for frame in range(1, original.n_frames):
original.seek(frame)
im.seek(frame)
assert_image_similar(im, orig, 2.54)
assert_image_similar(im, original, 2.54)

def test_write_animation_RGBA(self, tmp_path: Path) -> None:
"""
Expand Down

0 comments on commit 75342b6

Please sign in to comment.