summaryrefslogtreecommitdiff
path: root/tests/test_xml.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:43:15 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:43:15 -0500
commitd0a872c92e0e8c6ebb9530c2b61f2b9582612fb4 (patch)
treed2dee99e59bb7d0048f3152695baea7b7e01421b /tests/test_xml.py
parent29356409a6827e78d3f5aa18d9a7939bee7b6fca (diff)
downloadpython-coveragepy-d0a872c92e0e8c6ebb9530c2b61f2b9582612fb4.tar.gz
Change all pylint message codes to message names
Diffstat (limited to 'tests/test_xml.py')
-rw-r--r--tests/test_xml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_xml.py b/tests/test_xml.py
index 37ada3c..3c7d236 100644
--- a/tests/test_xml.py
+++ b/tests/test_xml.py
@@ -80,7 +80,7 @@ class XmlReportTest(CoverageTest):
def test_filename_format_including_module(self):
cov = self.run_doit()
- import sub.doit # pylint: disable=F0401
+ import sub.doit # pylint: disable=import-error
cov.xml_report([sub.doit], outfile="-")
xml = self.stdout()
doit_line = re_line(xml, "class.*doit")