summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2018-08-23 10:48:17 -0400
committerJackLivio <jack@livio.io>2018-08-23 10:48:17 -0400
commite8328052350e3feba10b5209cb7553ef4234562a (patch)
tree071407ffab53e292d2fad8ad3e27f0b8cf0cfe44
parent82e1657c140951da1f11da06c26075c2ed1e6a01 (diff)
downloadsdl_core-e8328052350e3feba10b5209cb7553ef4234562a.tar.gz
Check style
-rw-r--r--src/components/policy/policy_regular/test/policy_manager_impl_test.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/components/policy/policy_regular/test/policy_manager_impl_test.cc b/src/components/policy/policy_regular/test/policy_manager_impl_test.cc
index f1bb42c69c..9b38bc3be8 100644
--- a/src/components/policy/policy_regular/test/policy_manager_impl_test.cc
+++ b/src/components/policy/policy_regular/test/policy_manager_impl_test.cc
@@ -202,8 +202,7 @@ class PolicyManagerImplTest2 : public ::testing::Test {
manager = new PolicyManagerImpl();
ON_CALL(policy_settings_, app_storage_folder())
.WillByDefault(ReturnRef(kAppStorageFolder));
- ON_CALL(policy_settings_, use_full_app_id())
- .WillByDefault(Return(true));
+ ON_CALL(policy_settings_, use_full_app_id()).WillByDefault(Return(true));
manager->set_listener(&listener);
const char* levels[] = {"BACKGROUND", "FULL", "LIMITED", "NONE"};
hmi_level.assign(levels, levels + sizeof(levels) / sizeof(levels[0]));
@@ -240,8 +239,7 @@ class PolicyManagerImplTest2 : public ::testing::Test {
file_system::remove_directory_content(kAppStorageFolder);
ON_CALL(policy_settings_, app_storage_folder())
.WillByDefault(ReturnRef(kAppStorageFolder));
- ON_CALL(policy_settings_, use_full_app_id())
- .WillByDefault(Return(true));
+ ON_CALL(policy_settings_, use_full_app_id()).WillByDefault(Return(true));
ASSERT_TRUE(manager->InitPT(file_name, &policy_settings_));
}