diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/main.c b/tests/main.c index 11719a8..8e45ba4 100644 --- a/tests/main.c +++ b/tests/main.c @@ -25,6 +25,7 @@ static CHECK_RESULT int test_hash_map() { value = 34; return_if_error(hash_map_insert(&hash_map, create_buffer_view("hello", 5), &value)); + value = 50; for(i = 0; i < 128; ++i) return_if_error(hash_map_insert(&hash_map, create_buffer_view((const char*)&i, 1), &value)); return_if_error(hash_map_insert(&hash_map, create_buffer_view("hellp", 5), &value)); |