diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-27 21:52:13 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-27 21:52:13 -0400 |
commit | 6ff836f35e09dc8a107248b096cc133a423a4c11 (patch) | |
tree | 2c29785fea8876ce803ed6f6b5c3f4ebfeedc4ad /tests/test_process.py | |
parent | ba704d02a40b8f8067c2624a8c7add9618f2e41d (diff) | |
download | python-coveragepy-git-6ff836f35e09dc8a107248b096cc133a423a4c11.tar.gz |
Fix a few more occurrences of 'Coverage' to 'coverage.py'
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index e4fa7417..b57f4020 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -401,7 +401,7 @@ class ProcessTest(CoverageTest): def test_coverage_run_dashm_is_like_python_dashm_with__main__207(self): if sys.version_info < (2, 7): - # Coverage isn't bug-for-bug compatible in the behavior of -m for + # Coverage.py isn't bug-for-bug compatible in the behavior of -m for # Pythons < 2.7 self.skip("-m doesn't work the same < Python 2.7") # https://bitbucket.org/ned/coveragepy/issue/207 @@ -612,8 +612,7 @@ class ProcessTest(CoverageTest): out = self.run_command("python run_twice.py") self.assertEqual( out, - "Coverage.py warning: " - "Module foo was previously imported, but not measured.\n" + "Coverage.py warning: Module foo was previously imported, but not measured.\n" ) |