diff --git a/monitoring/uss_qualifier/scenarios/astm/utm/data_exchange_validation/get_op_data_validation.py b/monitoring/uss_qualifier/scenarios/astm/utm/data_exchange_validation/get_op_data_validation.py index 7c4e42831c..450867f574 100644 --- a/monitoring/uss_qualifier/scenarios/astm/utm/data_exchange_validation/get_op_data_validation.py +++ b/monitoring/uss_qualifier/scenarios/astm/utm/data_exchange_validation/get_op_data_validation.py @@ -31,7 +31,7 @@ ) from monitoring.uss_qualifier.scenarios.astm.utm.data_exchange_validation.test_steps.expected_interactions_test_steps import ( expect_interuss_post_interactions, - expect_get_requests_to_mock_uss, + expect_get_requests_to_mock_uss_when_no_notification, expect_no_interuss_post_interactions, check_any_notification, ) @@ -197,7 +197,7 @@ def _tested_uss_plans_deconflicted_flight_near_existing_flight( ) if tested_uss_notified: - expect_get_requests_to_mock_uss( + expect_get_requests_to_mock_uss_when_no_notification( self, self.control_uss, planning_time, @@ -292,7 +292,7 @@ def _tested_uss_unable_to_plan_flight_near_invalid_shared_existing_flight( validator.expect_not_shared() if tested_uss_notified: - expect_get_requests_to_mock_uss( + expect_get_requests_to_mock_uss_when_no_notification( self, self.control_uss, planning_time, diff --git a/monitoring/uss_qualifier/scenarios/astm/utm/data_exchange_validation/test_steps/expected_interactions_test_steps.py b/monitoring/uss_qualifier/scenarios/astm/utm/data_exchange_validation/test_steps/expected_interactions_test_steps.py index 936384cb18..3c454e68ed 100644 --- a/monitoring/uss_qualifier/scenarios/astm/utm/data_exchange_validation/test_steps/expected_interactions_test_steps.py +++ b/monitoring/uss_qualifier/scenarios/astm/utm/data_exchange_validation/test_steps/expected_interactions_test_steps.py @@ -100,7 +100,7 @@ def expect_no_interuss_post_interactions( scenario.end_test_step() -def expect_get_requests_to_mock_uss( +def expect_get_requests_to_mock_uss_when_no_notification( scenario: TestScenarioType, mock_uss: MockUSSClient, st: StringBasedDateTime,