From 8a14ec4b58b2bfbe4e7f62a1c5cfc4e476aa84dd Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 12 Apr 2016 20:00:30 -0400 Subject: No need to break these lines --- tests/test_summary.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/test_summary.py b/tests/test_summary.py index 0cb9c24b..89a8443c 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", """\ -- cgit v1.2.1