From 2bba4c3c6c5774c1254041186a480e0273e55b08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferm=C3=ADn=20Gal=C3=A1n=20M=C3=A1rquez?= Date: Wed, 31 Jan 2024 13:44:55 +0100 Subject: [PATCH] FIX broken utest --- test/unittests/common/commonSem_test.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/unittests/common/commonSem_test.cpp b/test/unittests/common/commonSem_test.cpp index 1a1442aba4..f389fbd449 100644 --- a/test/unittests/common/commonSem_test.cpp +++ b/test/unittests/common/commonSem_test.cpp @@ -45,8 +45,7 @@ TEST(commonSem, unique) { int s; - s = semInit(); - EXPECT_EQ(0, s); + semInit(); s = reqSemGive(__FUNCTION__, "test"); EXPECT_EQ(0, s);