summaryrefslogtreecommitdiff
path: root/test/test_process.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-02-24 21:52:45 -0500
committerNed Batchelder <ned@nedbatchelder.com>2010-02-24 21:52:45 -0500
commit6fc44cd5893765ac4239d3fc5b08450b89d75456 (patch)
tree75c9dfe51495d7c4a1e800f499245cfd7ff870b4 /test/test_process.py
parent4312501b4e8b7a60e8d3f092bfdb38a32f6a8ecb (diff)
downloadpython-coveragepy-git-6fc44cd5893765ac4239d3fc5b08450b89d75456.tar.gz
Clarify a comment
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 53dce065..6198f52e 100644
--- a/test/test_process.py
+++ b/test/test_process.py
@@ -184,8 +184,8 @@ class ProcessTest(CoverageTest):
f2()
""")
- # The important thing is for "coverage run" and "python" to report the
- # same traceback.
+ # The important thing is for "coverage run" and "python" to have the
+ # same output. No traceback.
out = self.run_command("coverage run exit.py")
out2 = self.run_command("python exit.py")
self.assertMultiLineEqual(out, out2)