diff --git a/Tests/ttLib/data/dot-cubic.ttf b/Tests/ttLib/data/dot-cubic.ttf index 229c9e93d..5adb11cc1 100644 Binary files a/Tests/ttLib/data/dot-cubic.ttf and b/Tests/ttLib/data/dot-cubic.ttf differ diff --git a/Tests/ttLib/ttGlyphSet_test.py b/Tests/ttLib/ttGlyphSet_test.py index 0cfc24a55..3a4d9a937 100644 --- a/Tests/ttLib/ttGlyphSet_test.py +++ b/Tests/ttLib/ttGlyphSet_test.py @@ -560,19 +560,19 @@ class TTGlyphSetTest(object): ] pen = RecordingPen() - glyphset["glyph00001"].draw(pen) + glyphset["one"].draw(pen) assert pen.value == expected pen = RecordingPen() - glyphset["glyph00002"].draw(pen) + glyphset["two"].draw(pen) assert pen.value == expected pen = RecordingPen() - glyphset["glyph00003"].draw(pen) + glyphset["three"].draw(pen) assert pen.value == expected pen = RecordingPen() - glyphset["glyph00004"].draw(pen) + glyphset["four"].draw(pen) assert pen.value == [ ("moveTo", ((75.5, 181),)), ("curveTo", ((103, 181), (125, 158), (125, 131))),