Skip to content

Commit

Permalink
Changing method name per review
Browse files Browse the repository at this point in the history
  • Loading branch information
punamverma committed Dec 16, 2023
1 parent ee8d6cb commit 2e4d228
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 2e4d228

Please sign in to comment.