Skip to content

Commit

Permalink
add some explanations of output
Browse files Browse the repository at this point in the history
  • Loading branch information
daisieh committed Jul 21, 2022
1 parent 7ef5e7e commit a747372
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion katsu_validate_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ def main():
expected = json.load(f)

compare = Compare().check(expected, actual)

print("Katsu returned the following:")
print(json.dumps(actual, indent=4))
print("\n\nDifferences between expected and actual:")
print(json.dumps(compare, indent=4))

if __name__ == "__main__":
Expand Down

0 comments on commit a747372

Please sign in to comment.