summaryrefslogtreecommitdiff
path: root/src/components/connection_handler
diff options
context:
space:
mode:
authorKozoriz <kozorizandriy@gmail.com>2016-04-20 17:54:47 +0300
committerKozoriz <kozorizandriy@gmail.com>2016-04-25 16:35:16 +0300
commit72723be0357114617d87be396baba7a244a32b6e (patch)
tree07e3df82351c73f53291255bf18bcea09cf44935 /src/components/connection_handler
parent48f4d233ec6ee321292187df48f0adbfe1e3a52e (diff)
downloadsdl_core-72723be0357114617d87be396baba7a244a32b6e.tar.gz
Correctives after review
Diffstat (limited to 'src/components/connection_handler')
-rw-r--r--src/components/connection_handler/test/heart_beat_monitor_test.cc2
1 files changed, 1 insertions, 1 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 e442a144bf..331a83c8d4 100644
--- a/src/components/connection_handler/test/heart_beat_monitor_test.cc
+++ b/src/components/connection_handler/test/heart_beat_monitor_test.cc
@@ -67,7 +67,7 @@ class HeartBeatMonitorTest : public testing::Test {
kConnectionHandle, 0, &connection_handler_mock, kTimeout);
}
- virtual void TearDown() { delete conn; }
+ void TearDown() OVERRIDE { delete conn; }
};
ACTION_P2(RemoveSession, conn, session_id) { conn->RemoveSession(session_id); }