astyle fix

pull/9135/head
Yossi Levy 2018-12-19 15:53:19 +02:00
parent b8b7292d8e
commit 9590441288
2 changed files with 2 additions and 2 deletions

View File

@ -473,7 +473,7 @@ void test_get_type_functionality()
TEST_SKIP_MESSAGE("No block device component is defined for this target");
return;
}
const char * bd_type = block_device->get_type();
const char *bd_type = block_device->get_type();
TEST_ASSERT_NOT_EQUAL(0, bd_type);
#if COMPONENT_QSPIF

View File

@ -162,7 +162,7 @@ void test_get_type_functionality()
HeapBlockDevice bd(TEST_BLOCK_DEVICE_SIZE, TEST_BLOCK_SIZE);
const char * bd_type = bd.get_type();
const char *bd_type = bd.get_type();
TEST_ASSERT_NOT_EQUAL(0, bd_type);
TEST_ASSERT_EQUAL(0, strcmp(bd_type, "HEAP"));
}