From 601796cf540d6a1dbd5f752d8160022e39717ee5 Mon Sep 17 00:00:00 2001 From: athatheo <vostidi@hotmail.com> Date: Fri, 12 Apr 2019 00:51:31 +0300 Subject: [PATCH] Fixed a tested value --- test/Services/EventActionService.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/Services/EventActionService.cpp b/test/Services/EventActionService.cpp index cacbe5d4..a767893c 100644 --- a/test/Services/EventActionService.cpp +++ b/test/Services/EventActionService.cpp @@ -407,10 +407,9 @@ TEST_CASE("Enable event-action function TC[19,8]", "[service][st19]") { TEST_CASE("Disable event-action function TC[19,9]", "[service][st19]") { // A message to disable event action function - Message message(19, 9, Message::TC, 0); eventActionService.disableEventActionFunction(message); - CHECK(eventActionService.getEventActionFunctionStatus()); + CHECK(eventActionService.getEventActionFunctionStatus() == false); } TEST_CASE("Execute a TC request", "[service][st19]"){ -- GitLab