From e80002643d84dcc40faa5f6b25b0d7e0b3f41f22 Mon Sep 17 00:00:00 2001 From: Zach Nagengast Date: Fri, 1 Dec 2023 08:54:13 -0800 Subject: [PATCH] Update Tests/test_imagefont.py Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- Tests/test_imagefont.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_imagefont.py b/Tests/test_imagefont.py index 95e06227a7a..fd5531cd816 100644 --- a/Tests/test_imagefont.py +++ b/Tests/test_imagefont.py @@ -864,7 +864,7 @@ def test_bitmap_blend(layout_engine, embedded_color): im = Image.new("RGBA", (128, 96), "white") d = ImageDraw.Draw(im) - d.text((16, 16), "AA", font=font, embedded_color=embedded_color, fill="#8E2F52") + d.text((16, 16), "AA", font=font, fill="#8E2F52", embedded_color=embedded_color) assert_image_equal_tofile(im, "Tests/images/bitmap_font_blend.png")