diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-04-12 20:00:30 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-04-12 20:00:30 -0400 |
commit | fecf20ef16651d48f9221e77f7a57de7a37b1658 (patch) | |
tree | ef4997c821f33ca903513003ea17445efe3fa4b1 | |
parent | faec75da682ac16b140e484a05f07c6cff8d107c (diff) | |
download | python-coveragepy-fecf20ef16651d48f9221e77f7a57de7a37b1658.tar.gz |
No need to break these lines
-rw-r--r-- | tests/test_summary.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py index 0cb9c24..89a8443 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -173,8 +173,7 @@ class SummaryTest(CoverageTest): self.assertEqual(self.line_count(report), 3) self.assertIn("mymissing.py ", report) - self.assertEqual(self.last_line_squeezed(report), - "mymissing.py 14 3 79% 3-4, 10") + self.assertEqual(self.last_line_squeezed(report), "mymissing.py 14 3 79% 3-4, 10") def test_report_show_missing_branches(self): self.make_file("mybranch.py", """\ @@ -196,8 +195,7 @@ class SummaryTest(CoverageTest): self.assertEqual(self.line_count(report), 3) self.assertIn("mybranch.py ", report) - self.assertEqual(self.last_line_squeezed(report), - "mybranch.py 7 0 4 2 82% 2->4, 4->6") + self.assertEqual(self.last_line_squeezed(report), "mybranch.py 7 0 4 2 82% 2->4, 4->6") def test_report_show_missing_branches_and_lines(self): self.make_file("main.py", """\ |