Formatted code. There are no functional changes. [ci skip]

This commit is contained in:
orbitcowboy 2019-11-07 11:29:37 +01:00
parent 7a19be4da1
commit c358688c68
1 changed files with 6 additions and 5 deletions

View File

@ -21,11 +21,12 @@ namespace ExampleNamespace {
}
TEST(ASSERT, ASSERT) {
int *a = (int*)calloc(10,sizeof(int));
ASSERT_TRUE(a != nullptr);
TEST(ASSERT, ASSERT)
{
int *a = (int*)calloc(10,sizeof(int));
ASSERT_TRUE(a != nullptr);
a[0] = 10;
a[0] = 10;
free(a);
free(a);
}