summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2018-09-04 13:54:57 -0400
committerJackLivio <jack@livio.io>2018-09-04 13:54:57 -0400
commit6a2a0eacbb0fe8b211ffbf1959f49dd7fca879c5 (patch)
tree7354923705708720cd99d5c5b2a4f275c1016844
parentc7cd5717cb889e434e8f28ad75e8e5893399034c (diff)
downloadsdl_core-6a2a0eacbb0fe8b211ffbf1959f49dd7fca879c5.tar.gz
Fix style
-rw-r--r--src/components/connection_handler/test/heart_beat_monitor_test.cc12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/components/connection_handler/test/heart_beat_monitor_test.cc b/src/components/connection_handler/test/heart_beat_monitor_test.cc
index 4cb71bb238..ccfff34116 100644
--- a/src/components/connection_handler/test/heart_beat_monitor_test.cc
+++ b/src/components/connection_handler/test/heart_beat_monitor_test.cc
@@ -196,10 +196,12 @@ TEST_F(HeartBeatMonitorTest, TwoSessionsElapsed) {
EXPECT_CALL(connection_handler_mock_, RemoveSession(kMockSessionId2))
.WillOnce(Return(true));
- const uint32_t kSession1 = connection_->AddNewSession(kDefaultConnectionHandle);
+ const uint32_t kSession1 =
+ connection_->AddNewSession(kDefaultConnectionHandle);
const transport_manager::ConnectionUID kAnotherConnectionHandle = 2;
- const uint32_t kSession2 = connection_->AddNewSession(kAnotherConnectionHandle);
+ const uint32_t kSession2 =
+ connection_->AddNewSession(kAnotherConnectionHandle);
TestAsyncWaiter waiter;
uint32_t times = 0;
@@ -233,7 +235,8 @@ TEST_F(HeartBeatMonitorTest, IncreaseHeartBeatTimeout) {
EXPECT_CALL(connection_handler_mock_, RemoveSession(kDefaultSessionId))
.WillOnce(Return(true));
- const uint32_t kSession = connection_->AddNewSession(kDefaultConnectionHandle);
+ const uint32_t kSession =
+ connection_->AddNewSession(kDefaultConnectionHandle);
EXPECT_CALL(connection_handler_mock_, CloseSession(_, _)).Times(0);
EXPECT_CALL(connection_handler_mock_, CloseConnection(_)).Times(0);
@@ -250,7 +253,8 @@ TEST_F(HeartBeatMonitorTest, DecreaseHeartBeatTimeout) {
EXPECT_CALL(connection_handler_mock_, RemoveSession(kDefaultSessionId))
.WillOnce(Return(true));
- const uint32_t kSession = connection_->AddNewSession(kDefaultConnectionHandle);
+ const uint32_t kSession =
+ connection_->AddNewSession(kDefaultConnectionHandle);
TestAsyncWaiter waiter;
uint32_t times = 0;