Commit 72184081 authored by Chris Withers's avatar Chris Withers

Slightly better error reporting. Dunno why this test is failign on windows, it...

Slightly better error reporting. Dunno why this test is failign on windows, it appears to be loosing thingthe 'decl' and 'doctype' events at the very least :-(
parent d9f5c90b
......@@ -92,7 +92,7 @@ class XMLParserTestCase(unittest.TestCase):
parser.parseStream(SegmentedFile(source))
else:
parser.parseString(source)
self.assert_(parser.get_events() == events, parser.get_events())
self.assertEquals(parser.get_events(),events)
def _run_check_extra(self, source, events):
self._run_check(source, events, EventCollectorExtra)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment