Skip to content

Commit

Permalink
Fix per review
Browse files Browse the repository at this point in the history
  • Loading branch information
punamverma committed Dec 14, 2023
1 parent 4bcb865 commit 1f588ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def _tested_uss_unable_to_plan_flight_near_invalid_shared_existing_flight(
flight_info,
additional_fields,
)
flight_2_oi_ref = validator.expect_shared_with_specified_data(
flight_2_oi_ref = validator.expect_shared_with_invalid_data(
flight_info,
validation_failure_type=OpIntentValidationFailureType.DataFormat,
invalid_fields=[modify_field1, modify_field2],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def expect_get_requests_to_mock_uss(
with scenario.check("Expect GET request", [participant_id]) as check:
check.record_failed(
summary=f"No GET request received at {mock_uss_base_url} for {id} ",
severity=Severity.Medium,
severity=Severity.High,
details=f"No GET request received at {mock_uss_base_url} for {id}. A planning USS in the area should have sent a reques to get the intent details.",
query_timestamps=[query.request.timestamp],
)
Expand Down
2 changes: 1 addition & 1 deletion monitoring/uss_qualifier/scenarios/astm/utm/test_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def expect_shared(
self._scenario.end_test_step()
return oi_full.reference

def expect_shared_with_specified_data(
def expect_shared_with_invalid_data(
self,
flight_intent: Union[InjectFlightRequest, FlightInfo],
validation_failure_type: OpIntentValidationFailureType,
Expand Down

0 comments on commit 1f588ec

Please sign in to comment.