diff options
author | Steve <sleonard76@gmail.com> | 2014-05-26 13:44:54 -0400 |
---|---|---|
committer | Steve <sleonard76@gmail.com> | 2014-05-26 13:44:54 -0400 |
commit | 232b546e7325be1626f940e5358fe468f3f06872 (patch) | |
tree | 81483848311ac41c38fdc2b3ae5ffd1fda0abc80 | |
parent | ad32797629dfe2fe18d7301203e7afb2fcaa15d7 (diff) | |
download | python-coveragepy-git-232b546e7325be1626f940e5358fe468f3f06872.tar.gz |
minor comment fix
-rw-r--r-- | tests/test_summary.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py index 7fd11a0e..88be7761 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -183,7 +183,7 @@ class SummaryTest(CoverageTest): # Name Stmts Miss Branch BrMiss Cover Missing # ------------------------------------------------------- - # tests/tmp 7 0 4 2 82% Branches: 2->4, 4->6 + # mybranch 7 0 4 2 82% Branches: 2->4, 4->6 self.assertEqual(self.line_count(report), 3) self.assertIn("mybranch ", report) @@ -210,7 +210,7 @@ class SummaryTest(CoverageTest): # pylint: disable=C0301 # Name Stmts Miss Branch BrMiss Cover Missing # ------------------------------------------------------- - # tests/tmp 10 2 8 5 61% 7-8, Branches: 2->4, 4->6, 6->7, 7->8, 7->9 + # mybranch 10 2 8 5 61% 7-8, Branches: 2->4, 4->6, 6->7, 7->8, 7->9 self.assertEqual(self.line_count(report), 3) self.assertIn("mybranch ", report) |