summaryrefslogtreecommitdiff
path: root/test/coveragetest.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-04-30 07:16:54 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-04-30 07:16:54 -0400
commitc39a187ef78bf7049c8e53016c162c721d100595 (patch)
tree7ddb28219c3548810c282ab180a35e85205e8cd4 /test/coveragetest.py
parent6877b2224d3e8939c8379f0428f7b62f98c22f36 (diff)
downloadpython-coveragepy-git-c39a187ef78bf7049c8e53016c162c721d100595.tar.gz
The name of the project is Coverage, not coverage.py.
Diffstat (limited to 'test/coveragetest.py')
-rw-r--r--test/coveragetest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/coveragetest.py b/test/coveragetest.py
index e76a9910..65e69cf8 100644
--- a/test/coveragetest.py
+++ b/test/coveragetest.py
@@ -102,12 +102,12 @@ class CoverageTest(unittest.TestCase):
def checkCoverage(self, text, lines, missing="", excludes=None, report=""):
# We write the code into a file so that we can import it.
- # coverage.py wants to deal with things as modules with file names.
+ # Coverage wants to deal with things as modules with file names.
modname = self.getModuleName()
self.makeFile(modname, text)
- # Start up coverage.py
+ # Start up Coverage.
cov = coverage.coverage()
cov.erase()
for exc in excludes or []:
@@ -117,7 +117,7 @@ class CoverageTest(unittest.TestCase):
# Import the python file, executing it.
mod = self.importModule(modname)
- # Stop coverage.py
+ # Stop Coverage.
cov.stop()
# Clean up our side effects