summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAKalinich-Luxoft <AKalinich@luxoft.com>2017-09-27 18:21:51 +0300
committerAndriy Byzhynar <AByzhynar@luxoft.com>2018-01-26 11:38:08 +0200
commitb1583c2c0dafd71b68d10cb669d09399920064a9 (patch)
tree6da432c0e87f8dc1d0add9c8db43085b1d16e791
parent17fdfef45e565efb8bb2927032c1485d43d5d710 (diff)
downloadsdl_core-b1583c2c0dafd71b68d10cb669d09399920064a9.tar.gz
Fix affected unit tests
-rw-r--r--src/components/application_manager/test/commands/mobile/send_location_request_test.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/application_manager/test/commands/mobile/send_location_request_test.cc b/src/components/application_manager/test/commands/mobile/send_location_request_test.cc
index aed4eb7b1b..620d7b321e 100644
--- a/src/components/application_manager/test/commands/mobile/send_location_request_test.cc
+++ b/src/components/application_manager/test/commands/mobile/send_location_request_test.cc
@@ -359,6 +359,10 @@ TEST_F(SendLocationRequestTest, OnEvent_Success) {
EXPECT_CALL(app_mngr_, application(kConnectionKey))
.WillRepeatedly(Return(app));
+ EXPECT_CALL(
+ app_mngr_,
+ ManageMobileCommand(MobileResultCodeIs(mobile_apis::Result::SUCCESS), _));
+
command_->on_event(event);
}