fix for unittest
EIVE/eive-obsw/pipeline/head Build started... Details

This commit is contained in:
Robin Müller 2023-03-10 19:13:01 +01:00
parent afd704650f
commit 2a84ebba57
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
#include <fsfw/ipc/QueueFactory.h>
EventManagerMock::EventManagerMock() : EventManager(objects::EVENT_MANAGER) {}
EventManagerMock::EventManagerMock() : EventManager(objects::EVENT_MANAGER, 80) {}
ReturnValue_t EventManagerMock::performOperation(uint8_t opCode) {
ReturnValue_t result = returnvalue::OK;
@ -60,4 +60,4 @@ bool EventManagerMock::isEventInEventList(object_id_t object, EventId_t eventId,
}
}
return false;
}
}