Small changes

This commit is contained in:
Tom Archer 2020-05-22 09:55:16 +01:00
parent b88f717885
commit 6f72429150

View File

@ -4192,7 +4192,7 @@ class UFO3ReadDataTestCase(unittest.TestCase):
fileObject = reader.getReadFileForPath("data/org.unifiedfontobject.doesNotExist")
self.assertEqual(fileObject, None)
def testUFOReaderGroupDuplicatesRemoved(self):
def testUFOReaderKernGroupDuplicatesRemoved(self):
# Non-kerning group duplicates are kept
# Kerning group duplicates are removed
expected_groups = {
@ -4203,7 +4203,6 @@ class UFO3ReadDataTestCase(unittest.TestCase):
}
reader = UFOReader(self.getFontPath())
groups = reader.readGroups()
import pdb; pdb.set_trace()
self.assertEqual(expected_groups, groups)