diff --git a/tests/test_wand.py b/tests/test_wand.py index ed80ff1..aa55b50 100644 --- a/tests/test_wand.py +++ b/tests/test_wand.py @@ -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