Skip to content

Commit a08240b

Browse files
cfriedtkartben
authored andcommitted
tests: posix: semaphores: coalesce string constants
Just a formatting change, in a separate commit. Signed-off-by: Chris Friedt <cfriedt@tenstorrent.com>
1 parent c260915 commit a08240b

File tree

1 file changed

+1
-3
lines changed
  • tests/posix/semaphores/src

1 file changed

+1
-3
lines changed

tests/posix/semaphores/src/main.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,7 @@ static void semaphore_test(sem_t *sem)
7373
zassert_equal(sem_getvalue(sem, &val), 0);
7474
zassert_equal(val, 1);
7575

76-
zassert_equal(sem_destroy(sem), -1,
77-
"acquired semaphore"
78-
" is destroyed");
76+
zassert_equal(sem_destroy(sem), -1, "acquired semaphore is destroyed");
7977
zassert_equal(errno, EBUSY);
8078

8179
/* TESTPOINT: take semaphore which is initialized with 1 */

0 commit comments

Comments
 (0)