summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unitTests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/unitTests.py b/unitTests.py
index ba7b42c..f7276e5 100644
--- a/unitTests.py
+++ b/unitTests.py
@@ -4022,7 +4022,7 @@ class MiscellaneousParserTests(ParseTestCase):
print_("verify behavior of ParseResults.get()")
# use sum() to merge separate groups into single ParseResults
res = sum(g1.parseString(teststring)[1:])
- print(res.dump())
+ print_(res.dump())
print_(res.get("A","A not found"))
print_(res.get("D","!D"))
self.assertEqual(res.get("A","A not found"), "aaa", "get on existing key failed")