Removed class

This commit is contained in:
Andrew Murray 2023-03-12 23:28:29 +11:00
parent 0a6092b0e6
commit cdb9ca9ea1

View File

@ -5,8 +5,7 @@ from PIL import Image, QoiImagePlugin
from .helper import assert_image_equal_tofile, assert_image_similar_tofile from .helper import assert_image_equal_tofile, assert_image_similar_tofile
class TestFileQOI: def test_sanity():
def test_sanity(self):
with Image.open("Tests/images/hopper.qoi") as im: with Image.open("Tests/images/hopper.qoi") as im:
assert im.mode == "RGB" assert im.mode == "RGB"
assert im.size == (128, 128) assert im.size == (128, 128)
@ -21,7 +20,8 @@ class TestFileQOI:
assert_image_similar_tofile(im, "Tests/images/pil123rgba.png", 0.03) assert_image_similar_tofile(im, "Tests/images/pil123rgba.png", 0.03)
def test_invalid_file(self):
def test_invalid_file():
invalid_file = "Tests/images/flower.jpg" invalid_file = "Tests/images/flower.jpg"
with pytest.raises(SyntaxError): with pytest.raises(SyntaxError):