summaryrefslogtreecommitdiff
path: root/tests/test_parser.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-07-27 21:52:13 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-07-27 21:52:13 -0400
commit6ff836f35e09dc8a107248b096cc133a423a4c11 (patch)
tree2c29785fea8876ce803ed6f6b5c3f4ebfeedc4ad /tests/test_parser.py
parentba704d02a40b8f8067c2624a8c7add9618f2e41d (diff)
downloadpython-coveragepy-git-6ff836f35e09dc8a107248b096cc133a423a4c11.tar.gz
Fix a few more occurrences of 'Coverage' to 'coverage.py'
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r--tests/test_parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py
index 98aba044..18621d15 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -12,7 +12,7 @@ from coverage.parser import PythonParser
class PythonParserTest(CoverageTest):
- """Tests for Coverage.py's Python code parsing."""
+ """Tests for coverage.py's Python code parsing."""
run_in_temp_dir = False
@@ -118,7 +118,7 @@ class PythonParserTest(CoverageTest):
class ParserFileTest(CoverageTest):
- """Tests for Coverage.py's code parsing from files."""
+ """Tests for coverage.py's code parsing from files."""
def parse_file(self, filename):
"""Parse `text` as source, and return the `PythonParser` used."""