diff --git a/Tests/ttLib/tables/_g_l_y_f_test.py b/Tests/ttLib/tables/_g_l_y_f_test.py index fb55dbd6e..7e0e7559b 100644 --- a/Tests/ttLib/tables/_g_l_y_f_test.py +++ b/Tests/ttLib/tables/_g_l_y_f_test.py @@ -782,6 +782,7 @@ class GlyphCubicTest: glyph.draw(pen, None) assert pen.value == [ + ("moveTo", ((0, 0),)), ("curveTo", ((0, 0), (1, 0), (1, 0))), ("curveTo", ((1, 0), (1, 1), (1, 1))), ("curveTo", ((1, 1), (0, 1), (0, 1))), diff --git a/Tests/ttLib/ttGlyphSet_test.py b/Tests/ttLib/ttGlyphSet_test.py index 6a459be80..0cfc24a55 100644 --- a/Tests/ttLib/ttGlyphSet_test.py +++ b/Tests/ttLib/ttGlyphSet_test.py @@ -574,6 +574,7 @@ class TTGlyphSetTest(object): pen = RecordingPen() glyphset["glyph00004"].draw(pen) assert pen.value == [ + ("moveTo", ((75.5, 181),)), ("curveTo", ((103, 181), (125, 158), (125, 131))), ("curveTo", ((125, 104), (103, 82), (75.5, 82))), ("curveTo", ((48, 82), (26, 104), (26, 131))),