Skip to content

Commit

Permalink
Fixed silly test bug
Browse files Browse the repository at this point in the history
  • Loading branch information
a-hurst committed Dec 16, 2023
1 parent af1e14d commit 68b51a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdl2/test/sdlimage_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ def test_IMG_LoadGIFAnimation_RW():
@pytest.mark.skipif(sdlimage.dll.version < 2080, reason="Added in 2.8.0")
def test_IMG_LoadWEBPAnimation_RW():
fp = io.open(_get_animation_path("webp"), "rb")
anim = sdlimage.IMG_LoadGIFAnimation_RW(rwops.rw_from_object(fp))
anim = sdlimage.IMG_LoadWEBPAnimation_RW(rwops.rw_from_object(fp))
fp.close()
_verify_anim_load(anim)
sdlimage.IMG_FreeAnimation(anim)

0 comments on commit 68b51a6

Please sign in to comment.