tests: kernel: add missing test call argument

Add missing param argument.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2024-08-24 06:26:29 -04:00
commit 376085c9ed
2 changed files with 5 additions and 4 deletions

View file

@ -8,8 +8,8 @@
void test_main(void)
{
ztest_run_test_suite(timer_jitter_drift, false, 1, 1);
ztest_run_test_suite(timer_jitter_drift, false, 1, 1, NULL);
#ifndef CONFIG_TIMER_EXTERNAL_TEST
ztest_run_test_suite(timer_tick_train, false, 1, 1);
ztest_run_test_suite(timer_tick_train, false, 1, 1, NULL);
#endif
}