Skip to content

Commit

Permalink
Fiddle with unknown glyph name
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Jan 4, 2024
1 parent 8c9bbdc commit 17f12a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_font.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 17f12a5

Please sign in to comment.