Skip to content

Commit

Permalink
show errors
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-gricourt committed Jun 24, 2024
1 parent ed2f583 commit 37be1a6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,10 @@ def compare_json(result: str, expect: str) -> bool:
data_expect = {}
with open(expect) as fd:
data_expect = json.load(fd)
print("Result")
print(normalize_json(data_result))
print("Expect")
print(normalize_json(data_expect))
return normalize_json(data_result) == normalize_json(data_expect)


Expand Down

0 comments on commit 37be1a6

Please sign in to comment.