aboutsummaryrefslogtreecommitdiff
path: root/parsing-tests
diff options
context:
space:
mode:
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"]