summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@austin.rr.com>2018-12-30 18:33:52 -0600
committerPaul McGuire <ptmcg@austin.rr.com>2018-12-30 18:33:52 -0600
commitc2fdc55b760c04ceb04ad7e1bb3d9cd6b070aa3e (patch)
tree673740f28d22948e879822ff7c5895a39d33b548
parent209f236fec0444f6900f0bc9c76d8c565717dab0 (diff)
downloadpyparsing-git-c2fdc55b760c04ceb04ad7e1bb3d9cd6b070aa3e.tar.gz
Remove print() call left in to test decoy
-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")