summaryrefslogtreecommitdiff
path: root/tests/test_oddball.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_oddball.py')
-rw-r--r--tests/test_oddball.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py
index 3a013b04..5b623ae4 100644
--- a/tests/test_oddball.py
+++ b/tests/test_oddball.py
@@ -210,7 +210,7 @@ class PyexpatTest(CoverageTest):
cov = coverage.coverage()
cov.erase()
- # Import the python file, executing it.
+ # Import the Python file, executing it.
self.start_import_stop(cov, "outer")
_, statements, missing, _ = cov.analysis("trydom.py")
@@ -320,8 +320,8 @@ class ExceptionTest(CoverageTest):
lines = cov.data.line_data()
clean_lines = {}
for f, llist in lines.items():
- # f is a path to a python module, so we drop the '.py' to get
- # a callname
+ # f is a path to a Python module, so we drop the '.py' to get
+ # a callname.
basename = os.path.basename(f)
assert basename.endswith(".py")
if basename[:-3] in callnames: