completed a comment

This commit is contained in:
justvanrossum 2017-11-24 20:02:47 +01:00
parent 6ee901cc81
commit 74faedf848

View File

@ -33,7 +33,7 @@ class AFMTest(unittest.TestCase):
with open(AFM, 'r') as f:
originalLines = f.read().splitlines()
newLines = afmData.splitlines()
del newLines[1] # remove the
del newLines[1] # remove the "generated by afmLib" comment
self.assertEqual(originalLines, newLines)
@staticmethod