We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
assert_image_equal_tofile
1 parent ea9baaf commit 3e14beaCopy full SHA for 3e14bea
1 file changed
Tests/test_font_pcf.py
@@ -82,7 +82,7 @@ def test_to_imagefont(request: pytest.FixtureRequest, tmp_path: Path) -> None:
82
im = Image.new("L", (130, 30), "white")
83
draw = ImageDraw.Draw(im)
84
draw.text((0, 0), message, "black", font=imgfont)
85
- assert_image_similar_tofile(im, "Tests/images/test_draw_pbm_target.png", 0)
+ assert_image_equal_tofile(im, "Tests/images/test_draw_pbm_target.png")
86
87
88
def test_textsize(request: pytest.FixtureRequest, tmp_path: Path) -> None:
0 commit comments