summaryrefslogtreecommitdiff
path: root/test/test_api.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-02-01 22:46:41 -0500
committerNed Batchelder <ned@nedbatchelder.com>2011-02-01 22:46:41 -0500
commit67749e288dbb41ac63ab257f1be54856ecf279db (patch)
tree31caae73b86014106556931fe55b1ac78a557988 /test/test_api.py
parentd85af798072dbec82fabdf2eee56e0b2dcd805c1 (diff)
downloadpython-coveragepy-git-67749e288dbb41ac63ab257f1be54856ecf279db.tar.gz
Pylint 0.23.0 'deprecated' disable-msg.
Diffstat (limited to 'test/test_api.py')
-rw-r--r--test/test_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_api.py b/test/test_api.py
index 5952dfe7..aee0734a 100644
--- a/test/test_api.py
+++ b/test/test_api.py
@@ -314,7 +314,7 @@ class SourceOmitIncludeTest(CoverageTest):
"""
cov = coverage.coverage(**kwargs)
cov.start()
- import usepkgs # pylint: disable-msg=F0401,W0612
+ import usepkgs # pylint: disable=F0401,W0612
cov.stop()
return cov.data.summary()