From 7dfbd40007f58298dbf8bd16e912dc6127015d9a Mon Sep 17 00:00:00 2001 From: Timo Lotterbach Date: Wed, 3 Jul 2013 16:11:29 +0200 Subject: [PATCH] GenericComunicator: fixed unit test build Signed-off-by: Timo Lotterbach --- .../Communicators/GenericCommunicator/test/DBUSCommunicatorTest.cpp | 4 ++-- 1 file 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::Set((ApplicationReferenceMap*) &this->refmap); running = true; -- 2.7.4