summaryrefslogtreecommitdiff
path: root/src/components/dbus/test/test_dbus_adapter.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/dbus/test/test_dbus_adapter.cc')
-rw-r--r--src/components/dbus/test/test_dbus_adapter.cc8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/components/dbus/test/test_dbus_adapter.cc b/src/components/dbus/test/test_dbus_adapter.cc
index c5922dfdcb..74a6de1aa9 100644
--- a/src/components/dbus/test/test_dbus_adapter.cc
+++ b/src/components/dbus/test/test_dbus_adapter.cc
@@ -42,20 +42,18 @@ namespace test {
namespace components {
namespace dbus {
-class DBusAdapterTest : public ::testing::Test {
-};
+class DBusAdapterTest : public ::testing::Test {};
TEST_F(DBusAdapterTest, Initialization) {
const std::string kSdlServiceName = "test.ford.sdl.core";
const std::string kSdlObjectPath = "/";
const std::string kHmiServiceName = "test.ford.sdl.hmi";
const std::string kHmiObjectPath = "/";
- ::dbus::DBusAdapter adapter(kSdlServiceName, kSdlObjectPath,
- kHmiServiceName, kHmiObjectPath);
+ ::dbus::DBusAdapter adapter(
+ kSdlServiceName, kSdlObjectPath, kHmiServiceName, kHmiObjectPath);
EXPECT_TRUE(adapter.Init());
}
} // namespace dbus
} // namespace components
} // namespace test
-