summaryrefslogtreecommitdiff
path: root/src/components/remote_control/test/commands/get_interior_vehicle_data_request_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/remote_control/test/commands/get_interior_vehicle_data_request_test.cc')
-rw-r--r--src/components/remote_control/test/commands/get_interior_vehicle_data_request_test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/remote_control/test/commands/get_interior_vehicle_data_request_test.cc b/src/components/remote_control/test/commands/get_interior_vehicle_data_request_test.cc
index 5e7366f48c..4ad833aa60 100644
--- a/src/components/remote_control/test/commands/get_interior_vehicle_data_request_test.cc
+++ b/src/components/remote_control/test/commands/get_interior_vehicle_data_request_test.cc
@@ -115,6 +115,8 @@ class GetInteriorVehicleDataRequestTest : public ::testing::Test {
.WillByDefault(Return(mock_app_));
ON_CALL(*mock_service_, IsInterfaceAvailable(_))
.WillByDefault(Return(true));
+ ON_CALL(*mock_service_, IsRemoteControlApplication(_))
+ .WillByDefault(Return(true));
EXPECT_CALL(mock_module_, event_dispatcher())
.WillRepeatedly(ReturnRef(event_dispatcher_));
ServicePtr exp_service(mock_service_);