diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/hash_test.c | 2 | ||||
-rw-r--r-- | test/strindex_test.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/hash_test.c b/test/hash_test.c index ec8ea6f..953673a 100644 --- a/test/hash_test.c +++ b/test/hash_test.c @@ -124,7 +124,7 @@ main(int argc, char** argv) if (st != ZIX_STATUS_NOT_FOUND) { return test_fail("Unexpectedly removed `%s' twice\n", strings[i]); } - + // Check to ensure remaining strings are still present for (size_t j = i + 1; j < n_strings; ++j) { const char* match = (const char*)zix_hash_find(hash, strings[j]); diff --git a/test/strindex_test.c b/test/strindex_test.c index 91273b8..b36f632 100644 --- a/test/strindex_test.c +++ b/test/strindex_test.c @@ -53,7 +53,7 @@ main(int argc, char** argv) } } } - + zix_strindex_free(strindex); return 0; } |