diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-21 22:00:22 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-21 22:00:22 -0500 |
commit | 8b615a927f17fa4ebcc04c61e15b32e9e3e5c92d (patch) | |
tree | 7b918a2d3c844762a2981e89227d26d3cc8d09f9 /test/test_xml.py | |
parent | 0c6f2f058fa24d3448ee80b2bd5166904dbfa402 (diff) | |
download | python-coveragepy-8b615a927f17fa4ebcc04c61e15b32e9e3e5c92d.tar.gz |
Lint
Diffstat (limited to 'test/test_xml.py')
-rw-r--r-- | test/test_xml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_xml.py b/test/test_xml.py index 6542dca..dda03e0 100644 --- a/test/test_xml.py +++ b/test/test_xml.py @@ -40,7 +40,7 @@ class XmlReportTest(CoverageTest): def test_no_source(self): # Written while investigating a bug, might as well keep it. # https://bitbucket.org/ned/coveragepy/issue/208 - self.make_file("innocuous.py", "a = 1") + self.make_file("innocuous.py", "a = 4") cov = coverage.coverage() cov.start() self.import_local_file("innocuous") @@ -76,7 +76,7 @@ class XmlReportTest(CoverageTest): def test_filename_format_including_module(self): cov = self.run_doit() - import sub.doit + import sub.doit # pylint: disable=F0401 cov.xml_report([sub.doit], outfile="-") xml = self.stdout() doit_line = re_line(xml, "class.*doit") |