diff options
author | Omniscient <omniscient.oce@gmail.com> | 2024-06-07 12:12:53 +1000 |
---|---|---|
committer | Omniscient <omniscient.oce@gmail.com> | 2024-06-07 12:12:53 +1000 |
commit | 44188d921c13111b61904f98ad06f8249e41d050 (patch) | |
tree | 10d4c29c072d6c68f0c50fc63443714c251f5107 /tests | |
parent | 4976c723a7add3a1409eb529d088868a2c568fbb (diff) |
fix pool test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/pool_tests.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pool_tests.c b/tests/pool_tests.c index df65773..10a4bed 100644 --- a/tests/pool_tests.c +++ b/tests/pool_tests.c @@ -20,7 +20,7 @@ TEST(Pool, SanityCheckTest) { TEST_ASSERT_EQUAL(true, true); } TEST(Pool, Initialisation) { // u32 pool - void_pool pool = void_pool_create(&a, 256, sizeof(u32)); + void_pool pool = void_pool_create(&a, "Test pool", 256, sizeof(u32)); u32 x_handle; u32* x_ptr = (u32*)void_pool_alloc(&pool, &x_handle); // store something in it |