Skip to content

Commit 9590441

Browse files
Yossi LevyYossi Levy
authored andcommitted
astyle fix
1 parent b8b7292 commit 9590441

File tree

2 files changed

+2
-2
lines changed
  • features/storage/TESTS/blockdevice

2 files changed

+2
-2
lines changed

features/storage/TESTS/blockdevice/general_block_device/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ void test_get_type_functionality()
473473
TEST_SKIP_MESSAGE("No block device component is defined for this target");
474474
return;
475475
}
476-
const char * bd_type = block_device->get_type();
476+
const char *bd_type = block_device->get_type();
477477
TEST_ASSERT_NOT_EQUAL(0, bd_type);
478478

479479
#if COMPONENT_QSPIF

features/storage/TESTS/blockdevice/heap_block_device/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ void test_get_type_functionality()
162162

163163
HeapBlockDevice bd(TEST_BLOCK_DEVICE_SIZE, TEST_BLOCK_SIZE);
164164

165-
const char * bd_type = bd.get_type();
165+
const char *bd_type = bd.get_type();
166166
TEST_ASSERT_NOT_EQUAL(0, bd_type);
167167
TEST_ASSERT_EQUAL(0, strcmp(bd_type, "HEAP"));
168168
}

0 commit comments

Comments
 (0)