From db2f6f2bcbea690ca680a84bceaff8964a3e8649 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Graf=C3=A9?= Date: Fri, 1 Dec 2023 15:53:07 -0500 Subject: [PATCH] fix error breaking test report --- .../uss_qualifier/scenarios/flight_planning/test_steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitoring/uss_qualifier/scenarios/flight_planning/test_steps.py b/monitoring/uss_qualifier/scenarios/flight_planning/test_steps.py index f02a2db5d8..38f6a19c40 100644 --- a/monitoring/uss_qualifier/scenarios/flight_planning/test_steps.py +++ b/monitoring/uss_qualifier/scenarios/flight_planning/test_steps.py @@ -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], )