diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-02-24 21:52:45 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-02-24 21:52:45 -0500 |
commit | 7e5146f3bf32b4cc92782104e459c773adb06e26 (patch) | |
tree | e28ddc51067684dde225f7e0da2ef09b9157cb1a /test/test_process.py | |
parent | e8725025fb2e06b2c0453ed15969ae425cc2f13e (diff) | |
download | python-coveragepy-7e5146f3bf32b4cc92782104e459c773adb06e26.tar.gz |
Clarify a comment
Diffstat (limited to 'test/test_process.py')
-rw-r--r-- | test/test_process.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_process.py b/test/test_process.py index 53dce06..6198f52 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) |