We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba7b479 commit 4b18329Copy full SHA for 4b18329
TESTS/integration/fs-single/main.cpp
@@ -66,12 +66,12 @@ LittleFileSystem fs("sd");
66
67
static control_t test_format(const size_t call_count)
68
{
69
+ int format_err = fs.format(&sd);
70
+ TEST_ASSERT_EQUAL_INT_MESSAGE(0, format_err, "could not format block device");
71
+
72
int mount_err = fs.mount(&sd);
73
TEST_ASSERT_EQUAL_INT_MESSAGE(0, mount_err, "could not mount block device");
74
- int format_err = fs.reformat(&sd);
- TEST_ASSERT_EQUAL_INT_MESSAGE(0, format_err, "could not format block device");
-
75
return CaseNext;
76
}
77
0 commit comments