summaryrefslogtreecommitdiff
path: root/src/components/application_manager/test/commands/mobile/delete_interaction_choice_set_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/test/commands/mobile/delete_interaction_choice_set_test.cc')
-rw-r--r--src/components/application_manager/test/commands/mobile/delete_interaction_choice_set_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/application_manager/test/commands/mobile/delete_interaction_choice_set_test.cc b/src/components/application_manager/test/commands/mobile/delete_interaction_choice_set_test.cc
index bb1a5c168b..ee70f32155 100644
--- a/src/components/application_manager/test/commands/mobile/delete_interaction_choice_set_test.cc
+++ b/src/components/application_manager/test/commands/mobile/delete_interaction_choice_set_test.cc
@@ -126,7 +126,7 @@ TEST_F(DeleteInteractionChoiceSetRequestTest, Run_InvalidApp_UNSUCCESS) {
ON_CALL(app_mngr_, GetRPCService()).WillByDefault(ReturnRef(rpc_service_));
EXPECT_CALL(
rpc_service_,
- ManageMobileCommand(_, am::commands::Command::CommandOrigin::ORIGIN_SDL));
+ ManageMobileCommand(_, am::commands::Command::CommandOrigin::SOURCE_SDL));
EXPECT_CALL(*app_, FindChoiceSet(_)).Times(0);
command_->Run();
}
@@ -145,7 +145,7 @@ TEST_F(DeleteInteractionChoiceSetRequestTest, Run_FindChoiceSetFail_UNSUCCESS) {
ON_CALL(app_mngr_, GetRPCService()).WillByDefault(ReturnRef(rpc_service_));
EXPECT_CALL(
rpc_service_,
- ManageMobileCommand(_, am::commands::Command::CommandOrigin::ORIGIN_SDL));
+ ManageMobileCommand(_, am::commands::Command::CommandOrigin::SOURCE_SDL));
command_->Run();
}
@@ -175,7 +175,7 @@ TEST_F(DeleteInteractionChoiceSetRequestTest, Run_ChoiceSetInUse_SUCCESS) {
ON_CALL(app_mngr_, GetRPCService()).WillByDefault(ReturnRef(rpc_service_));
EXPECT_CALL(
rpc_service_,
- ManageMobileCommand(_, am::commands::Command::CommandOrigin::ORIGIN_SDL));
+ ManageMobileCommand(_, am::commands::Command::CommandOrigin::SOURCE_SDL));
command_->Run();
}