test_htmlreport: cppcheck no longer supports XML file version 1 (#1487)
This commit is contained in:
parent
a872b3f57a
commit
0af866c9ba
|
@ -24,7 +24,7 @@ HTML_REPORT_BIN = os.path.join(os.path.abspath(os.path.dirname(__file__)),
|
||||||
class TestHTMLReport(unittest.TestCase):
|
class TestHTMLReport(unittest.TestCase):
|
||||||
|
|
||||||
def testReportError(self):
|
def testReportError(self):
|
||||||
for xml_version in ['1', '2']:
|
for xml_version in ['2']:
|
||||||
self.checkReportError(xml_version)
|
self.checkReportError(xml_version)
|
||||||
|
|
||||||
def checkReportError(self, xml_version):
|
def checkReportError(self, xml_version):
|
||||||
|
@ -47,7 +47,7 @@ class TestHTMLReport(unittest.TestCase):
|
||||||
self.assertIn('Memory leak:', detail_contents)
|
self.assertIn('Memory leak:', detail_contents)
|
||||||
|
|
||||||
def testReportNoError(self):
|
def testReportNoError(self):
|
||||||
for xml_version in ['1', '2']:
|
for xml_version in ['2']:
|
||||||
self.checkReportNoError(xml_version)
|
self.checkReportNoError(xml_version)
|
||||||
|
|
||||||
def checkReportNoError(self, xml_version):
|
def checkReportNoError(self, xml_version):
|
||||||
|
|
Loading…
Reference in New Issue