Skip to content

Commit

Permalink
fix error breaking test report
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrafe authored Dec 1, 2023
1 parent cdd2c26 commit db2f6f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def submit_flight(
check.record_failed(
summary=f"Flight planning activity outcome was not expected",
severity=Severity.High,
details=f'{flight_planner.participant_id} indicated {resp.activity_result} with flight plan status {resp.flight_plan_status} rather than the expected {" or ".join(f"({expected_results[0]}, {expected_results[1]})")}{notes_suffix}',
details=f'{flight_planner.participant_id} indicated {resp.activity_result} with flight plan status {resp.flight_plan_status} rather than the expected {" or ".join([f"({expected_result[0]}, {expected_result[1]})" for expected_result in expected_results])}{notes_suffix}',
query_timestamps=[query.request.timestamp],
)

Expand Down

0 comments on commit db2f6f2

Please sign in to comment.