otTables_test: mixed tabs and spaces

This commit is contained in:
Cosimo Lupo 2021-05-20 19:22:16 +01:00
parent d1e2e0e381
commit adbe4c3de7

View File

@ -512,8 +512,11 @@ class InsertionMorphActionTest(unittest.TestCase):
for name, attrs, content in parseXML(self.MORPH_ACTION_XML): for name, attrs, content in parseXML(self.MORPH_ACTION_XML):
a.fromXML(name, attrs, content, self.font) a.fromXML(name, attrs, content, self.font)
writer = OTTableWriter() writer = OTTableWriter()
a.compile(writer, self.font, a.compile(
actionIndex={('B', 'C'): 9, ('B', 'A', 'D'): 7}) writer,
self.font,
actionIndex={('B', 'C'): 9, ('B', 'A', 'D'): 7},
)
self.assertEqual(hexStr(writer.getAllData()), "1234fc4300090007") self.assertEqual(hexStr(writer.getAllData()), "1234fc4300090007")
def testCompileActions_empty(self): def testCompileActions_empty(self):