Skip to content

Commit

Permalink
Fix participant IDs and check name
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminPelletier committed Sep 27, 2023
1 parent 00bc96f commit 7995e95
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def _setup(self) -> bool:
error, query = self.tested_uss.get_readiness()
self.record_query(query)
with self.check(
"Flight planning USS not ready", self.tested_uss.participant_id
"Flight planning USS not ready", [self.tested_uss.participant_id]
) as check:
if error:
check.record_failed(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def _setup(self) -> bool:
error, query = uss.get_readiness()
self.record_query(query)
with self.check(
"Flight planning USS not ready", uss.participant_id
"Flight planning USS not ready", [uss.participant_id]
) as check:
if error:
check.record_failed(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def _setup(self) -> bool:
error, query = uss.get_readiness()
self.record_query(query)
with self.check(
"Flight planning USS not ready", uss.participant_id
"Flight planning USS not ready", [uss.participant_id]
) as check:
if error:
check.record_failed(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ FlightPlannerResource that provides the flight planner (USSP) which should be te
### Check for flight planning readiness test step
Both USSs are queried for their readiness to ensure this test can proceed.

#### Flight planning USS not ready check
#### Flight planning USSP not ready check
If the USS does not respond appropriately to the endpoint queried to determine readiness, this check will fail and the test cannot proceed.

### Area clearing test step
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def _setup(self) -> bool:
error, query = self.ussp.get_readiness()
self.record_query(query)
with self.check(
"Flight planning USSP not ready", self.ussp.participant_id
"Flight planning USSP not ready", [self.ussp.participant_id]
) as check:
if error:
check.record_failed(
Expand Down

0 comments on commit 7995e95

Please sign in to comment.