From 74faedf8481f428596f8b07475a6ca5d55a088d5 Mon Sep 17 00:00:00 2001 From: justvanrossum Date: Fri, 24 Nov 2017 20:02:47 +0100 Subject: [PATCH] completed a comment --- Tests/afmLib/afmLib_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/afmLib/afmLib_test.py b/Tests/afmLib/afmLib_test.py index 2dedb3066..97fcf8d9c 100644 --- a/Tests/afmLib/afmLib_test.py +++ b/Tests/afmLib/afmLib_test.py @@ -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