This commit is contained in:
Edward Thomson
2026-01-24 14:24:01 +00:00
parent 17798f46dd
commit 4e95fa2dea

View File

@@ -149,7 +149,7 @@ void test_hashmap__put_persists_key(void)
void test_hashmap__put_persists_multpile_keys(void)
{
char *str;
char *str = NULL;
cl_git_pass(git_hashmap_test_put(&g_table, "foo", "oof"));
cl_git_pass(git_hashmap_test_put(&g_table, "bar", "rab"));
@@ -163,7 +163,7 @@ void test_hashmap__put_persists_multpile_keys(void)
void test_hashmap__put_updates_existing_key(void)
{
char *str;
char *str = NULL;
cl_git_pass(git_hashmap_test_put(&g_table, "foo", "oof"));
cl_git_pass(git_hashmap_test_put(&g_table, "bar", "rab"));