diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-06-13 21:46:35 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-06-13 21:46:35 -0400 |
commit | 42afb74959d043efa3d30873703736d3552aebfa (patch) | |
tree | e4df7b64bfdbb463896a2bfcebb8c31a64a28c08 /test/test_testplugin.py | |
parent | 5acd2aed8f2654a120bc8e74feafa523cbbc0c6f (diff) | |
download | python-coveragepy-42afb74959d043efa3d30873703736d3552aebfa.tar.gz |
The 'source' option is a list of directories or packages to limit coverage's attention.
Diffstat (limited to 'test/test_testplugin.py')
-rw-r--r-- | test/test_testplugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_testplugin.py b/test/test_testplugin.py index c5bcca0..b012ca6 100644 --- a/test/test_testplugin.py +++ b/test/test_testplugin.py @@ -14,7 +14,7 @@ class TestCoverage(PluginTester, unittest.TestCase): @py.test.mark.skipif(True) # "requires nose test runner" def test_output(self): - assert "Processing Coverage..." in self.output, ( + assert "Processing coverage..." in self.output, ( "got: %s" % self.output) def makeSuite(self): class TC(unittest.TestCase): |