diff --git a/tests/bluetooth/controller/ctrl_feature_exchange/src/main_hci.c b/tests/bluetooth/controller/ctrl_feature_exchange/src/main_hci.c index 43fd918a63275..d717d6f651f1a 100644 --- a/tests/bluetooth/controller/ctrl_feature_exchange/src/main_hci.c +++ b/tests/bluetooth/controller/ctrl_feature_exchange/src/main_hci.c @@ -56,7 +56,7 @@ static void hci_setup(void *data) ull_conn_init(); conn_from_pool = ll_conn_acquire(); - zassert_not_null(conn_from_pool, "Could not allocate connection memory", NULL); + zassert_not_null(conn_from_pool, "Could not allocate connection memory"); test_setup(conn_from_pool); } diff --git a/tests/bluetooth/controller/ctrl_hci/src/main.c b/tests/bluetooth/controller/ctrl_hci/src/main.c index e01c7a848d860..fe38eb3d01740 100644 --- a/tests/bluetooth/controller/ctrl_hci/src/main.c +++ b/tests/bluetooth/controller/ctrl_hci/src/main.c @@ -56,7 +56,7 @@ static void hci_setup(void *data) ull_conn_init(); conn_from_pool = ll_conn_acquire(); - zassert_not_null(conn_from_pool, "Could not allocate connection memory", NULL); + zassert_not_null(conn_from_pool, "Could not allocate connection memory"); test_setup(conn_from_pool); } diff --git a/tests/posix/multi_process/src/times.c b/tests/posix/multi_process/src/times.c index dd1ccdb6be032..1b815d9e5fe01 100644 --- a/tests/posix/multi_process/src/times.c +++ b/tests/posix/multi_process/src/times.c @@ -57,7 +57,7 @@ ZTEST(posix_multi_process, test_times) clock_t t0 = *(clock_t *)((uint8_t *)&test_tms[0] + offset); clock_t t1 = *(clock_t *)((uint8_t *)&test_tms[1] + offset); - zexpect_true(t1 >= t0, "time moved backward for tms_%s: t0: %d t1: %d", name, t0, + zexpect_true(t1 >= t0, "time moved backward for tms_%s: t0: %ld t1: %ld", name, t0, t1); } }