Skip to content

Commit 27c9791

Browse files
nashifgalak
authored andcommitted
flash_map: fix test names
API names have changed, but not the test name. Signed-off-by: Anas Nashif <[email protected]>
1 parent ea7afdd commit 27c9791

File tree

1 file changed

+3
-3
lines changed
  • tests/subsys/storage/flash_map/src

1 file changed

+3
-3
lines changed

tests/subsys/storage/flash_map/src/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ extern int flash_map_entries;
1313
struct flash_sector fs_sectors[256];
1414

1515
/**
16-
* @brief Test flash_area_to_sectors()
16+
* @brief Test flash_area_get_sectors()
1717
*/
18-
void test_flash_area_to_sectors(void)
18+
void test_flash_area_get_sectors(void)
1919
{
2020
const struct flash_area *fa;
2121
u32_t sec_cnt;
@@ -100,6 +100,6 @@ void test_flash_area_to_sectors(void)
100100
void test_main(void)
101101
{
102102
ztest_test_suite(test_flash_map,
103-
ztest_unit_test(test_flash_area_to_sectors));
103+
ztest_unit_test(test_flash_area_get_sectors));
104104
ztest_run_test_suite(test_flash_map);
105105
}

0 commit comments

Comments
 (0)