diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-11-10 17:00:13 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-11-10 17:00:13 -0500 |
commit | 4d471f54c906e5041526b2b8e38cb8721abf4f09 (patch) | |
tree | 758085f0ae1de0d54b50bc7221fe4c2e7b7cfcf9 /tests | |
parent | 8328744f59c531a08f3fe5c406ff22c192aad0f9 (diff) | |
download | python-coveragepy-git-4d471f54c906e5041526b2b8e38cb8721abf4f09.tar.gz |
Coverage.py is only capitalized when it starts a sentence
Diffstat (limited to 'tests')
-rw-r--r-- | tests/coveragetest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/coveragetest.py b/tests/coveragetest.py index 4ffea0e6..85af3623 100644 --- a/tests/coveragetest.py +++ b/tests/coveragetest.py @@ -377,7 +377,7 @@ class CoverageTest( Python interpreter. * "coverage" is replaced with the command name for the main - Coverage.py program. + coverage.py program. Returns a pair: the process' exit status and its stdout/stderr text, which are also stored as `self.last_command_status` and @@ -408,8 +408,8 @@ class CoverageTest( # modules. command_words = "jython -m coverage".split() else: - # The invocation requests the Coverage.py program. Substitute the - # actual Coverage.py main command name. + # The invocation requests the coverage.py program. Substitute the + # actual coverage.py main command name. command_words = [self.coverage_command] else: |