summaryrefslogtreecommitdiff
path: root/parsing-tests
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-12-11 18:01:31 +0100
committerMS <ms@taler.net>2020-12-11 18:01:31 +0100
commitd9d3db1b094f412c85ddbe52480df6289a144f33 (patch)
treef2bc43963f77ff5efa80689ea5b67bc998bfbe25 /parsing-tests
parent0dbe75757b4dbf1800b5cbbd666ca488ecd1d5fa (diff)
downloadlibeufin-d9d3db1b094f412c85ddbe52480df6289a144f33.tar.gz
libeufin-d9d3db1b094f412c85ddbe52480df6289a144f33.tar.bz2
libeufin-d9d3db1b094f412c85ddbe52480df6289a144f33.zip
Implement and test /config (nexus).
Diffstat (limited to 'parsing-tests')
-rwxr-xr-xparsing-tests/checks.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/parsing-tests/checks.py b/parsing-tests/checks.py
index 68308137..1bf23336 100755
--- a/parsing-tests/checks.py
+++ b/parsing-tests/checks.py
@@ -3,7 +3,6 @@
import os
import sys
import json
-from deepdiff import DeepDiff
from subprocess import Popen, PIPE
# return dict with parse-result.
@@ -29,10 +28,6 @@ def get_json_from_disk(json_file):
with open(json_file_abs) as j:
return json.load(j)
-def assert_json_equal(json1, json2):
- diff = DeepDiff(json1, json2, ignore_order=True, report_repetition=True)
- assert len(diff.keys()) == 0
-
def test_camt53_example3():
parsed = call_parser("./samples/camt53_example3.xml")
entries = parsed["reports"][0]["entries"]