Skip to content

Commit

Permalink
Merge pull request #1 from radarhere/jpg_repr
Browse files Browse the repository at this point in the history
Only assert image is similar
  • Loading branch information
n3011 committed May 6, 2023
2 parents 2d841e1 + 93e5072 commit 55be23b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Tests/test_file_jpeg.py
Expand Up @@ -922,18 +922,18 @@ def closure(mode, *args):
im.load()
ImageFile.LOAD_TRUNCATED_IMAGES = False

def test_repr_jpg(self):
def test_repr_jpeg(self):
im = hopper()

with Image.open(BytesIO(im._repr_jpg_())) as repr_jpg:
assert repr_jpg.format == "JPEG"
assert_image_equal(im, repr_jpg)
with Image.open(BytesIO(im._repr_jpeg_())) as repr_jpeg:
assert repr_jpeg.format == "JPEG"
assert_image_similar(im, repr_jpeg, 17)

def test_repr_jpg_error(self):
def test_repr_jpeg_error(self):
im = hopper("F")

with pytest.raises(ValueError):
im._repr_jpg_()
im._repr_jpeg_()


@pytest.mark.skipif(not is_win32(), reason="Windows only")
Expand Down

0 comments on commit 55be23b

Please sign in to comment.