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 | 64999a94688fa83c769fde934d1934e95754efcd (patch) | |
tree | 1d128b000e7bb94b1d5fd9f87000073be6c71e1a /tests | |
parent | 8c2cea536675e503e2eb78fd94e04f9635129e26 (diff) | |
download | python-coveragepy-64999a94688fa83c769fde934d1934e95754efcd.tar.gz |
minor comment fix
Diffstat (limited to 'tests')
-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 7fd11a0..88be776 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) |