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
commit76ee7c3c78dd9ba8a0f4401b0501af3a2b4506a3 (patch)
treece341ae20d2da1e61137bbee711716824ecce64c /test/coveragetest.py
parent025d1a446612ac15d44c9b400d502a6483b7ac66 (diff)
downloadpython-coveragepy-76ee7c3c78dd9ba8a0f4401b0501af3a2b4506a3.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 e76a991..65e69cf 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