Skip to content

Commit

Permalink
fix _glyph attrib error
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rc1e committed Jun 30, 2023
1 parent c70f5c4 commit b27c1ec
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_android.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@ def exclude_glyphs():
def com_roboto_fonts_check_glyph_dont_round_to_grid(ttFont):
"""Test certain glyphs don't round to grid"""
failed = False
glyphset = ttFont.getGlyphSet()
for name in ["ellipsis"]:
glyph = glyphset[name]._glyph
glyph = ttFont["glyf"][name]
for component in glyph.components:
if component.flags & (1 << 2):
failed = True
Expand Down

0 comments on commit b27c1ec

Please sign in to comment.