From 28977fd5a7d2fbc40443388408ebdb11e09960a2 Mon Sep 17 00:00:00 2001 From: moi15moi Date: Sun, 8 Oct 2023 17:18:43 -0400 Subject: [PATCH] [test_font] Add char to test properly get_missing_glyphs with mac font --- tests/test_font.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_font.py b/tests/test_font.py index 9fd8672..60c95dd 100644 --- a/tests/test_font.py +++ b/tests/test_font.py @@ -106,9 +106,9 @@ def test_font_get_missing_glyphs_cmap_encoding_mac_platform(): font = font[0] missing_glyphs = font.get_missing_glyphs( - string.ascii_letters + string.digits + "@é¸" + string.ascii_letters + string.digits + "@é¸^Æ~" ) - assert missing_glyphs == set(["@", "¸"]) + assert missing_glyphs == set(["@", "¸", "~"]) def test_variable_font_with_invalid_fvar_axes():