File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ Here is a generic template for a test showing the expected use of
202
202
ztest_unit_test(test_sometest1),
203
203
ztest_unit_test(test_sometest2),
204
204
ztest_unit_test(test_sometest3),
205
- ztest_unit_test(test_sometest4),
205
+ ztest_unit_test(test_sometest4)
206
206
);
207
207
ztest_run_test_suite(common);
208
208
}
@@ -226,14 +226,16 @@ What to avoid:
226
226
ztest_test_suite(feature1,
227
227
ztest_unit_test(test_1a),
228
228
ztest_unit_test(test_1b),
229
- ztest_unit_test(test_1c),
229
+ ztest_unit_test(test_1c)
230
+ );
230
231
ztest_run_test_suite(feature1);
231
232
#endif
232
233
233
234
#ifdef TEST_feature2
234
235
ztest_test_suite(feature2,
235
236
ztest_unit_test(test_2a),
236
- ztest_unit_test(test_2b),
237
+ ztest_unit_test(test_2b)
238
+ );
237
239
ztest_run_test_suite(feature2);
238
240
#endif
239
241
}
You can’t perform that action at this time.
0 commit comments