From a08240ba0dc2500d26d75914eaaee991459a0550 Mon Sep 17 00:00:00 2001 From: Chris Friedt Date: Sat, 19 Apr 2025 10:07:00 -0400 Subject: [PATCH] tests: posix: semaphores: coalesce string constants Just a formatting change, in a separate commit. Signed-off-by: Chris Friedt --- tests/posix/semaphores/src/main.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/posix/semaphores/src/main.c b/tests/posix/semaphores/src/main.c index a44571fed86..24cbb85b32a 100644 --- a/tests/posix/semaphores/src/main.c +++ b/tests/posix/semaphores/src/main.c @@ -73,9 +73,7 @@ static void semaphore_test(sem_t *sem) zassert_equal(sem_getvalue(sem, &val), 0); zassert_equal(val, 1); - zassert_equal(sem_destroy(sem), -1, - "acquired semaphore" - " is destroyed"); + zassert_equal(sem_destroy(sem), -1, "acquired semaphore is destroyed"); zassert_equal(errno, EBUSY); /* TESTPOINT: take semaphore which is initialized with 1 */