diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-15 12:30:31 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-15 12:30:31 -0500 |
commit | 20033c71012732c181b3997e454f42edc46d44fd (patch) | |
tree | ca145e1dd4880b0c345c76791d3dbcf749cc1c20 /tests/test_parser.py | |
parent | babe79f03ea50e26accc397480e1dee2ea53152e (diff) | |
download | python-coveragepy-git-20033c71012732c181b3997e454f42edc46d44fd.tar.gz |
Pick off some lint
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r-- | tests/test_parser.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py index 1be5e16c..0ede10b4 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -224,7 +224,8 @@ class ParserMissingArcDescriptionTest(CoverageTest): ) self.assertEqual( parser.missing_arc_description(6, -5), - "line 6 didn't return from function 'func5', because the loop on line 6 didn't complete" + "line 6 didn't return from function 'func5', " + "because the loop on line 6 didn't complete" ) self.assertEqual( parser.missing_arc_description(6, 7), |