Skip to content

Commit

Permalink
fix: change the pytest raising an error in test_output.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rebekahrudd committed Oct 24, 2024
1 parent 0ce7d67 commit f2c9d87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/output/test_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,11 +374,11 @@ def test_throw_errors_if_report_type_not_md_nor_json():
report_storing_type = "not_md_nor_json"
storing_location_name = "invalid_path"

with pytest.raises(ValueError):
output.run_checks(
# with pytest.raises(ValueError):
value = output.run_checks(
checks, report_location, report_storing_type, storing_location_name
)
# assert value == False
assert value == False


def test_write_md_and_json_correctly(tmp_path):
Expand Down

0 comments on commit f2c9d87

Please sign in to comment.