diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:43:15 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:43:15 -0500 |
commit | 622742746327abccd848d40583c9d7bc8bcb096c (patch) | |
tree | a1419e5f0df1bf266abca7728d0376e2fae8afcb /tests/test_xml.py | |
parent | b26cf4981ebc3bdbcec03386b4ee2734f5e9a444 (diff) | |
download | python-coveragepy-git-622742746327abccd848d40583c9d7bc8bcb096c.tar.gz |
Change all pylint message codes to message names
Diffstat (limited to 'tests/test_xml.py')
-rw-r--r-- | tests/test_xml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_xml.py b/tests/test_xml.py index 37ada3cb..3c7d2361 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") |