Skip to content

Commit 77160ac

Browse files
committed
main: Add "test_" to test functions
All test functions must start with "test_" if you want to use Twister. Signed-off-by: Yasushi SHOJI <[email protected]>
1 parent d08ad4f commit 77160ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <zephyr/ztest.h>
88
#include <csp/csp.h>
99

10-
ZTEST(simple, simple_asert)
10+
ZTEST(simple, test_simple_asert)
1111
{
1212
zassert_true(1, "1 was false");
1313
zassert_false(0, "0 was true");

0 commit comments

Comments
 (0)