diff --git a/tests/subsys/fs/fcb/src/main.c b/tests/subsys/fs/fcb/src/main.c index a25363df7956d4..654401a493c75e 100644 --- a/tests/subsys/fs/fcb/src/main.c +++ b/tests/subsys/fs/fcb/src/main.c @@ -162,9 +162,6 @@ void test_main(void) ztest_unit_test_setup_teardown(fcb_test_append_fill, fcb_pretest_2_sectors, teardown_nothing), - ztest_unit_test_setup_teardown(fcb_test_reset, - fcb_pretest_2_sectors, - teardown_nothing), ztest_unit_test_setup_teardown(fcb_test_rotate, fcb_pretest_2_sectors, teardown_nothing), @@ -173,6 +170,11 @@ void test_main(void) teardown_nothing), ztest_unit_test_setup_teardown(fcb_test_last_of_n, fcb_pretest_4_sectors, + teardown_nothing), + /* Finally, run one that leaves behind a + * flash.bin file without any random content */ + ztest_unit_test_setup_teardown(fcb_test_reset, + fcb_pretest_2_sectors, teardown_nothing) );