summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Rauwolf <rauwolf@itestra.de>2013-02-26 18:25:40 +0100
committerPhilip Rauwolf <rauwolf@itestra.de>2013-02-26 18:25:40 +0100
commitc7c4c9e955f485741077cbd41dcd7790a7ff724d (patch)
tree363a6d0215e057a623ba1486e63406d05e8b600e
parentdfb30d0ef8303b41a91f3c03418372b9e289da3b (diff)
downloadgenivi-common-api-dbus-runtime-c7c4c9e955f485741077cbd41dcd7790a7ff724d.tar.gz
Eliminated compile time errors in DBusAddressTranslatorTest.cpp
-rw-r--r--src/test/DBusAddressTranslatorTest.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/test/DBusAddressTranslatorTest.cpp b/src/test/DBusAddressTranslatorTest.cpp
index 01437f4..6c17e29 100644
--- a/src/test/DBusAddressTranslatorTest.cpp
+++ b/src/test/DBusAddressTranslatorTest.cpp
@@ -79,15 +79,15 @@ static const std::string fileString =
typedef std::vector<CommonAPI::DBus::DBusServiceAddress>::value_type vt;
static const std::vector<CommonAPI::DBus::DBusServiceAddress> dbusAddresses = {
- vt("no.nothing.instance", "/no/nothing/instance", "no.nothing.service"),
- vt("connection.name", "/path/to/object", "service.name"),
- vt("no.interface.connection", "/no/interface/path", "no.interface.service"),
- vt("no.connection.instance", "/no/connection/path", "no.connection.interface"),
- vt("no.object.connection", "/no/object/instance", "no.object.interface"),
- vt("only.interface.instance", "/only/interface/instance", "only.interface.interface"),
- vt("only.connection.connection", "/only/connection/instance", "only.connection.service"),
- vt("only.object.instance", "/only/object/path", "only.object.service"),
- vt("fake.legacy.service.connection", "/some/legacy/path/6259504", "fake.legacy.service.LegacyInterface")
+ vt("no.nothing.instance", "/no/nothing/instance", "no.nothing.service", false),
+ vt("connection.name", "/path/to/object", "service.name", false),
+ vt("no.interface.connection", "/no/interface/path", "no.interface.service", false),
+ vt("no.connection.instance", "/no/connection/path", "no.connection.interface", false),
+ vt("no.object.connection", "/no/object/instance", "no.object.interface", false),
+ vt("only.interface.instance", "/only/interface/instance", "only.interface.interface", false),
+ vt("only.connection.connection", "/only/connection/instance", "only.connection.service", false),
+ vt("only.object.instance", "/only/object/path", "only.object.service", false),
+ vt("fake.legacy.service.connection", "/some/legacy/path/6259504", "fake.legacy.service.LegacyInterface", false)
};