diff options
author | collin <collin+i@collinmcqueen.com> | 2020-06-06 12:53:55 -0400 |
---|---|---|
committer | collin <collin+i@collinmcqueen.com> | 2020-06-06 12:53:55 -0400 |
commit | 36d0811f0b1fa94c72131991cbf79ea798735f7d (patch) | |
tree | 961a5e487e58d341f5642cef53a05069d787a69a /src | |
parent | ccb380a5e43ecae201b71aca32e7c3de0d0b8fd6 (diff) | |
download | sdl_core-fix/http_ut_build.tar.gz |
fix build error in http unit testsfix/http_ut_build
Diffstat (limited to 'src')
-rw-r--r-- | src/components/application_manager/test/policy_handler_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/application_manager/test/policy_handler_test.cc b/src/components/application_manager/test/policy_handler_test.cc index cfaa771fa0..8d8553d4eb 100644 --- a/src/components/application_manager/test/policy_handler_test.cc +++ b/src/components/application_manager/test/policy_handler_test.cc @@ -1859,7 +1859,7 @@ TEST_F(PolicyHandlerTest, DISABLED_OnSnapshotCreated_UrlAdded) { .WillOnce(ReturnRef(mock_session_observer)); EXPECT_CALL(*mock_app_, device()).WillOnce(Return(0)); EXPECT_CALL(app_manager_, applications()).WillOnce(Return(app_set)); - EXPECT_CALL(mock_message_helper_, SendPolicySnapshotNotification(_, _, _, _)); + EXPECT_CALL(mock_message_helper_, SendPolicySnapshotNotification(_, testing::A<const std::vector<uint8_t>&>(), _, _)); // Check expectations for get app id GetAppIDForSending(); // Expectations |