diff options
Diffstat (limited to 'memory/test.cpp')
-rw-r--r-- | memory/test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/memory/test.cpp b/memory/test.cpp index 97c0f25..f62ce96 100644 --- a/memory/test.cpp +++ b/memory/test.cpp @@ -118,7 +118,7 @@ void test_arena_resize_out_of_bounds(unsigned char *buffer, u32 buffer_size) qres = arena_resize(&a, n1, 8, buffer_size - 8); assert(qres == NULL && "Arena Resize OUT OF BOUNDS test Failed: \n" - "Reason: Failed to fit a larger than capacity element within Arena capacity.\n"); + "Reason: Allocated a larger than capacity element within Arena capacity.\n"); } void test_arena_resize_negative_size(unsigned char *buffer, u32 buffer_size) |