summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst4
-rw-r--r--tests/coveragetest.py6
2 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index bde42223..a2b54f1e 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,7 +2,7 @@
.. For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
==============================
-Change history for Coverage.py
+Change history for coverage.py
==============================
These changes are listed in decreasing version number order. Note this can be
@@ -2394,7 +2394,7 @@ Major overhaul.
- The singleton coverage object is only created if the module-level functions
are used. This maintains the old interface while allowing better
- programmatic use of Coverage.py.
+ programmatic use of coverage.py.
- The minimum supported Python version is 2.3.
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: