Skip to content

Commit

Permalink
[uss_qualifier] acces proper activity result field in down_uss.py (#731)
Browse files Browse the repository at this point in the history
Read the correct field when running the check for the planned activity's result
  • Loading branch information
Shastick authored Jul 15, 2024
1 parent de77182 commit e82cbf6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def _plan_flight_conflict_planned(self):
with self.check(
"Rejected planning", [self.tested_uss.participant_id]
) as check:
msg = f"{self.tested_uss.participant_id} indicated {resp.result}"
msg = f"{self.tested_uss.participant_id} indicated {resp.activity_result}"
if "notes" in resp and resp.notes:
msg += f' with notes "{resp.notes}"'
else:
Expand Down

0 comments on commit e82cbf6

Please sign in to comment.