summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/test/commands/hmi/hmi_notifications_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/rpc_plugins/sdl_rpc_plugin/test/commands/hmi/hmi_notifications_test.cc')
-rw-r--r--src/components/application_manager/rpc_plugins/sdl_rpc_plugin/test/commands/hmi/hmi_notifications_test.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/test/commands/hmi/hmi_notifications_test.cc b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/test/commands/hmi/hmi_notifications_test.cc
index 9403b862df..26f7a63872 100644
--- a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/test/commands/hmi/hmi_notifications_test.cc
+++ b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/test/commands/hmi/hmi_notifications_test.cc
@@ -1557,8 +1557,7 @@ TEST_F(HMICommandsNotificationsTest,
std::shared_ptr<Command> command =
CreateCommand<OnSystemRequestNotification>(message);
- EXPECT_CALL(mock_policy_handler_,
- GetAppIdForSending(policy::PTUIterationType::DefaultIteration))
+ EXPECT_CALL(mock_policy_handler_, GetAppIdForSending())
.WillOnce(Return(kAppId_));
EXPECT_CALL(app_mngr_, application(_)).WillOnce(Return(app_));
ON_CALL(app_mngr_, connection_handler())
@@ -1594,8 +1593,7 @@ TEST_F(HMICommandsNotificationsTest,
std::shared_ptr<Command> command =
CreateCommand<OnSystemRequestNotification>(message);
- EXPECT_CALL(mock_policy_handler_,
- GetAppIdForSending(policy::PTUIterationType::DefaultIteration))
+ EXPECT_CALL(mock_policy_handler_, GetAppIdForSending())
.WillOnce(Return(kNullApppId));
EXPECT_CALL(app_mngr_, application(_)).Times(0);
EXPECT_CALL(mock_rpc_service_, ManageMobileCommand(_, _)).Times(0);