mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/nvs_unit_test_state' into 'master'
nvs: fix nvs_get_stats unit test See merge request idf/esp-idf!2250
This commit is contained in:
commit
a21336eaa1
@ -71,7 +71,7 @@ TEST_CASE("calculate used and free space", "[nvs]")
|
||||
TEST_ESP_ERR(nvs_get_stats(NULL, NULL), ESP_ERR_INVALID_ARG);
|
||||
nvs_stats_t stat1;
|
||||
nvs_stats_t stat2;
|
||||
TEST_ESP_ERR(nvs_get_stats(NULL, &stat1), ESP_ERR_NVS_PART_NOT_FOUND);
|
||||
TEST_ESP_ERR(nvs_get_stats(NULL, &stat1), ESP_ERR_NVS_NOT_INITIALIZED);
|
||||
TEST_ASSERT_TRUE(stat1.free_entries == 0);
|
||||
TEST_ASSERT_TRUE(stat1.namespace_count == 0);
|
||||
TEST_ASSERT_TRUE(stat1.total_entries == 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user