From 17f12a580572ab07849de6cc6c8da318833fe11f Mon Sep 17 00:00:00 2001 From: Just van Rossum Date: Thu, 4 Jan 2024 20:51:26 +0100 Subject: [PATCH] Fiddle with unknown glyph name --- tests/test_font.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_font.py b/tests/test_font.py index ff31ffa..6be65e7 100644 --- a/tests/test_font.py +++ b/tests/test_font.py @@ -408,7 +408,7 @@ async def test_getGlyph(backendName, expectedGlyph): async def test_getGlyphUnknownGlyph(): font = getTestFont("rcjk") with contextlib.closing(font): - glyph = await font.getGlyph("some_non_existant_glyph") + glyph = await font.getGlyph("a-glyph-that-does-not-exist") assert glyph is None