summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/pool_tests.c2
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