summaryrefslogtreecommitdiff
path: root/test/test_process.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-03-13 22:14:57 -0500
committerNed Batchelder <ned@nedbatchelder.com>2010-03-13 22:14:57 -0500
commit9f6fa1c7806e7802572b28e8ecbd57a9afe5ec21 (patch)
treed4dc63b5974b040225223e6774828dd15ddd4687 /test/test_process.py
parent99d1f54a583e5ac22742dada31a980b3145ce528 (diff)
downloadpython-coveragepy-9f6fa1c7806e7802572b28e8ecbd57a9afe5ec21.tar.gz
Reports now emphasize missed lines over executed lines, since those are more helpful for directing developers to improved test coverage.
Diffstat (limited to 'test/test_process.py')
-rw-r--r--test/test_process.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_process.py b/test/test_process.py
index ce98a38..e8e8c8b 100644
--- a/test/test_process.py
+++ b/test/test_process.py
@@ -123,9 +123,9 @@ class ProcessTest(CoverageTest):
# Reporting should still work even with the .rc file
out = self.run_command("coverage report")
self.assertMultiLineEqual(out, textwrap.dedent("""\
- Name Stmts Exec Cover
+ Name Stmts Miss Cover
----------------------------
- b_or_c 7 7 100%
+ b_or_c 7 0 100%
"""))
def test_missing_source_file(self):