Skip to content

Commit

Permalink
Fix assert in test_output_schema
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Waltlova <[email protected]>
  • Loading branch information
andywaltlova committed Nov 9, 2023
1 parent 19dab3f commit 2ae7ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/preconversion_assessment/test_output_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_output_schema():
schema_json = json.load(schema)
# If some difference between generated json and its schema invoke exception
jsonschema.validate(instance=empty_output, schema=schema_json)
assert empty_output["alert"] is False
assert not empty_output["alert"]


def test_output_schema_entries_report():
Expand Down

0 comments on commit 2ae7ffe

Please sign in to comment.