summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Lotterbach <timo.lotterbach@bmw-carit.de>2013-07-03 16:11:29 +0200
committerTimo Lotterbach <timo.lotterbach@bmw-carit.de>2013-07-05 12:56:48 +0200
commit7dfbd40007f58298dbf8bd16e912dc6127015d9a (patch)
tree9e30295d5e807dd9ec798e554f66d73d77f61167
parent67e5a931e2fc0061dae40eba2f08cc7d5863fe90 (diff)
downloadlayer_management-7dfbd40007f58298dbf8bd16e912dc6127015d9a.tar.gz
GenericComunicator: fixed unit test build
Signed-off-by: Timo Lotterbach <timo.lotterbach@bmw-carit.de>
-rw-r--r--LayerManagerPlugins/Communicators/GenericCommunicator/test/DBUSCommunicatorTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/LayerManagerPlugins/Communicators/GenericCommunicator/test/DBUSCommunicatorTest.cpp b/LayerManagerPlugins/Communicators/GenericCommunicator/test/DBUSCommunicatorTest.cpp
index 44ae9c4..eb766f9 100644
--- a/LayerManagerPlugins/Communicators/GenericCommunicator/test/DBUSCommunicatorTest.cpp
+++ b/LayerManagerPlugins/Communicators/GenericCommunicator/test/DBUSCommunicatorTest.cpp
@@ -121,7 +121,7 @@ public:
static void *processLoop(void * ptr) {
while (((DBUSCommunicatorTest*) ptr)->running) {
- ((DBUSCommunicatorTest*) ptr)->communicatorUnderTest->process(100);
+ ((DBUSCommunicatorTest*) ptr)->communicatorUnderTest->process();
}
return NULL;
}
@@ -135,7 +135,7 @@ public:
}
Configuration config(0, NULL);
communicatorUnderTest = new GenericCommunicator(mockCommandExecutor, config);
- this->communicatorUnderTest->start();
+ this->communicatorUnderTest->start(100);
DefaultValue<ApplicationReferenceMap*>::Set((ApplicationReferenceMap*) &this->refmap);
running = true;