Skip to content

Commit

Permalink
[test_font] Add char to test properly get_missing_glyphs with mac font
Browse files Browse the repository at this point in the history
  • Loading branch information
moi15moi committed Oct 8, 2023
1 parent 4e2bd9b commit 28977fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_font.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 28977fd

Please sign in to comment.