spelling: than

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 10:59:49 -05:00
parent 5cb061cff5
commit 9077267ceb
4 changed files with 6 additions and 6 deletions

View file

@ -236,7 +236,7 @@ void test_flash_erase__96k_app_banks_1(void) {
}
void test_flash_erase__96k_app_banks_2(void) {
// App that's in an aligned bank but larger than than 64k
// App that's in an aligned bank but larger than 64k
prv_test_erase_optimal_range(
0, 0, 69 * 1024, 96 * 1024,
(EraseCommand[]) {
@ -262,7 +262,7 @@ void test_flash_erase__96k_app_banks_3(void) {
}
void test_flash_erase__96k_app_banks_4(void) {
// App that's in an unaligned bank but larger than than 64k
// App that's in an unaligned bank but larger than 64k
prv_test_erase_optimal_range(
32 * 1024, 32 * 1024, (32 + 71) * 1024, (32 + 96) * 1024,
(EraseCommand[]) {

View file

@ -148,7 +148,7 @@ void test_flash_region__erase_optimal_range_96k_app_banks(void) {
s_command_list_index = 0;
// App that's in an aligned bank but larger than than 64k
// App that's in an aligned bank but larger than 64k
flash_region_erase_optimal_range(0, 0, 69 * 1024, 96 * 1024);
cl_assert_equal_i(s_command_list_index, 3);
@ -185,7 +185,7 @@ void test_flash_region__erase_optimal_range_96k_app_banks(void) {
s_command_list_index = 0;
// App that's in an unaligned bank but larger than than 64k
// App that's in an unaligned bank but larger than 64k
flash_region_erase_optimal_range(32 * 1024, 32 * 1024, (32 + 71) * 1024, (32 + 96) * 1024);
cl_assert_equal_i(s_command_list_index, 9);