Skip to content

Commit

Permalink
Fixed linter errors, temporarily removed 500 test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
bahadirbasaran committed Nov 18, 2022
1 parent ca7251c commit f18bf57
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 809 deletions.
4 changes: 2 additions & 2 deletions core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ def compare_output_equality(comparison_fields, *outputs):
if not all(
json.dumps(
{fld: val for fld, val in output["data"].items() if fld in comparison_fields}
).encode('utf-8') ==
json.dumps(
).encode('utf-8')
== json.dumps(
{fld: val for fld, val in outputs[0]["data"].items() if fld in comparison_fields}
).encode('utf-8')
for output in outputs
Expand Down
Loading

0 comments on commit f18bf57

Please sign in to comment.