Skip to content

Commit ece1c2d

Browse files
committed
tests: posix: semaphores: coalesce string constants
Just a formatting change, in a separate commit. Signed-off-by: Chris Friedt <cfriedt@tenstorrent.com>
1 parent 2231c7e commit ece1c2d

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
@@ -71,9 +71,7 @@ static void semaphore_test(sem_t *sem)
7171
zassert_equal(sem_getvalue(sem, &val), 0);
7272
zassert_equal(val, 1);
7373

74-
zassert_equal(sem_destroy(sem), -1,
75-
"acquired semaphore"
76-
" is destroyed");
74+
zassert_equal(sem_destroy(sem), -1, "acquired semaphore is destroyed");
7775
zassert_equal(errno, EBUSY);
7876

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

0 commit comments

Comments
 (0)