summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-03-25 15:45:10 -0700
committerDino Radaković <dinor@google.com>2021-03-25 16:04:59 -0700
commitdf7fee587d442b372ef43bd66c6a2f5c9af8c5eb (patch)
tree19704f4ef7fd0ffc3403bd57acb73735b6deca1a
parentc0dd0817cf2c7798a7e318e410a144a372166f91 (diff)
downloadgoogletest-df7fee587d442b372ef43bd66c6a2f5c9af8c5eb.tar.gz
googletest-df7fee587d442b372ef43bd66c6a2f5c9af8c5eb.zip
Googletest export
Delete extra whitespace in gtest_xml_test_utils.py PiperOrigin-RevId: 365140844
-rwxr-xr-xgoogletest/test/gtest_xml_test_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/test/gtest_xml_test_utils.py b/googletest/test/gtest_xml_test_utils.py
index 5dd0eb92..ec42c62c 100755
--- a/googletest/test/gtest_xml_test_utils.py
+++ b/googletest/test/gtest_xml_test_utils.py
@@ -70,7 +70,7 @@ class GTestXMLTestCase(gtest_test_utils.TestCase):
self.assertEquals(expected_node.tagName, actual_node.tagName)
expected_attributes = expected_node.attributes
- actual_attributes = actual_node .attributes
+ actual_attributes = actual_node.attributes
self.assertEquals(
expected_attributes.length, actual_attributes.length,
'attribute numbers differ in element %s:\nExpected: %r\nActual: %r' % (
@@ -78,7 +78,7 @@ class GTestXMLTestCase(gtest_test_utils.TestCase):
actual_attributes.keys()))
for i in range(expected_attributes.length):
expected_attr = expected_attributes.item(i)
- actual_attr = actual_attributes.get(expected_attr.name)
+ actual_attr = actual_attributes.get(expected_attr.name)
self.assert_(
actual_attr is not None,
'expected attribute %s not found in element %s' %
OpenPOWER on IntegriCloud