diff options
Diffstat (limited to 'test/test_hash.c')
-rw-r--r-- | test/test_hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_hash.c b/test/test_hash.c index 3d3ca95..8ee6b82 100644 --- a/test/test_hash.c +++ b/test/test_hash.c @@ -366,9 +366,9 @@ test_failed_alloc(void) assert(!stress(&allocator.base, 16)); // Test that each allocation failing is handled gracefully - const size_t n_new_allocs = allocator.n_allocations; + const size_t n_new_allocs = zix_failing_allocator_reset(&allocator, 0); for (size_t i = 0U; i < n_new_allocs; ++i) { - allocator.n_remaining = i; + zix_failing_allocator_reset(&allocator, i); assert(stress(&allocator.base, 16)); } } |