From 4eaf55c3cdfda05341eb763abbdb7ad5dbc44ef6 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Tue, 28 Nov 2023 14:17:29 +0200 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 f4f1753519f..d71d14a34d5 100644 --- a/Tests/test_imagefont.py +++ b/Tests/test_imagefont.py @@ -1074,6 +1074,6 @@ def test_raqm_missing_warning(monkeypatch): @pytest.mark.parametrize("size", [-1, 0]) -def test_invalid_truetype_sizes_raise(size, layout_engine): +def test_invalid_truetype_sizes_raise(layout_engine, size): with pytest.raises(ValueError): ImageFont.truetype(FONT_PATH, size, layout_engine=layout_engine)