aboutsummaryrefslogtreecommitdiffstats
path: root/test/gtest_xml_outfiles_test.py
diff options
context:
space:
mode:
authorshiqian <shiqian@861a406c-534a-0410-8894-cb66d6ee9925>2008-09-26 16:08:30 +0000
committershiqian <shiqian@861a406c-534a-0410-8894-cb66d6ee9925>2008-09-26 16:08:30 +0000
commit64cdcb69b28fc26e78d95c574187f7dd9830c84c (patch)
tree68f49941b72ce8f866c4f762cb3043504804800f /test/gtest_xml_outfiles_test.py
parente79c3ccb73d68543e8ad98d69179dee74abff7ab (diff)
downloadgoogletest-64cdcb69b28fc26e78d95c574187f7dd9830c84c.tar.gz
googletest-64cdcb69b28fc26e78d95c574187f7dd9830c84c.tar.bz2
googletest-64cdcb69b28fc26e78d95c574187f7dd9830c84c.zip
Lots of changes:
* changes the XML report format to match JUnit/Ant's. * improves file path handling. * allows the user to disable RTTI using the GTEST_HAS_RTTI macro. * makes the code compile with -Wswitch-enum.
Diffstat (limited to 'test/gtest_xml_outfiles_test.py')
-rwxr-xr-xtest/gtest_xml_outfiles_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/gtest_xml_outfiles_test.py b/test/gtest_xml_outfiles_test.py
index c76e1f78..b83df775 100755
--- a/test/gtest_xml_outfiles_test.py
+++ b/test/gtest_xml_outfiles_test.py
@@ -122,9 +122,9 @@ class GTestXMLOutFilesTest(gtest_xml_test_utils.GTestXMLTestCase):
actual = minidom.parse(output_file1)
else:
actual = minidom.parse(output_file2)
- self._NormalizeXml(actual.documentElement)
- self._AssertEquivalentElements(expected.documentElement,
- actual.documentElement)
+ self.NormalizeXml(actual.documentElement)
+ self.AssertEquivalentNodes(expected.documentElement,
+ actual.documentElement)
expected.unlink()
actual.unlink()