fix(storage): applied spelling fixes by codespell pre-commit hook

This commit is contained in:
Ivan Grokhotkov
2024-03-28 09:14:05 +01:00
parent 34f0a0d6e5
commit 10cc15b150
41 changed files with 83 additions and 95 deletions

View File

@@ -1 +1 @@
This is a file cointained in the generated filesystem image on the host and flashed to the ESP device
This is a file contained in the generated filesystem image on the host and flashed to the ESP device

View File

@@ -49,7 +49,7 @@ const char *spiffs_partition_name = "spiffs_ro";
static wl_handle_t s_wl_handle = WL_INVALID_HANDLE;
// Data in each filesystem partition
const char* cmp_string = "This is a file cointained in the generated filesystem image on the host and flashed to the ESP device";
const char* cmp_string = "This is a file contained in the generated filesystem image on the host and flashed to the ESP device";
#define CMP_STRING_LEN 102 // 101 + '\0'
static void fill_array_of_readonly_data_partitions(void)
@@ -162,7 +162,7 @@ TEST_CASE("Read-only partition - NVS API", "[nvs]")
TEST_ASSERT_EQUAL(-2147483648, i32_val);
nvs_close(handle);
// NVS partition flagged as read-only shouln't be possible to open in read-write mode
// NVS partition flagged as read-only shouldn't be possible to open in read-write mode
err = nvs_open_from_partition(nvs_partition_name, "storage", NVS_READWRITE, &handle);
TEST_ASSERT_EQUAL(ESP_ERR_NOT_ALLOWED, err);
nvs_close(handle);

View File

@@ -5,7 +5,7 @@ set(requires
vfs fatfs
# sdmmc tests, themselves
sdmmc_test_boards sdmmc_tests sdspi_tests
# various console comamnds
# various console commands
cmd_unity cmd_system cmd_sdmmc
)