Skip to content

Commit

Permalink
test_wand.py: fix typo in test skip
Browse files Browse the repository at this point in the history
Checks for webp skip but should check for avif skip.
  • Loading branch information
stephanlachnit authored Oct 25, 2023
1 parent 16169e5 commit 56430d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_wand.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def test_save_avif_quality(self):
low_quality = self.image.save_as_avif(io.BytesIO(), quality=30)
self.assertTrue(low_quality.f.tell() < high_quality.f.tell())

@unittest.skipIf(no_webp_support, "ImageMagick was built without AVIF support")
@unittest.skipIf(no_avif_support, "ImageMagick was built without AVIF support")
def test_save_avif_lossless(self):
original_image = self.image.image

Expand Down

0 comments on commit 56430d8

Please sign in to comment.