tests: util: Correct test name

Trivial syntax fix.

Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
This commit is contained in:
Andrei Emeltchenko 2019-02-11 11:24:52 +02:00 committed by Anas Nashif
parent 239805b2d8
commit a3ea6a5a6d

View file

@ -59,9 +59,9 @@ void test_COND_CODE_0(void)
/*test case main entry*/
void test_main(void)
{
ztest_test_suite(test_ringbuffer_api,
ztest_test_suite(test_util_api,
ztest_unit_test(test_COND_CODE_1),
ztest_unit_test(test_COND_CODE_0)
);
ztest_run_test_suite(test_ringbuffer_api);
ztest_run_test_suite(test_util_api);
}