diff -r 14ca894190fd -r b642eca4b956 tests/test_properties.c --- a/tests/test_properties.c Tue Nov 26 22:00:03 2024 +0100 +++ b/tests/test_properties.c Tue Nov 26 22:16:27 2024 +0100 @@ -440,7 +440,7 @@ char *v = cxMapGet(map, "key1"); CX_TEST_ASSERT(!strcmp(v, "value1")); - cxMapDestroy(map); + cxMapFree(map); cxPropertiesDestroy(&prop); CX_TEST_ASSERT(cx_testing_allocator_verify(&talloc)); @@ -513,7 +513,7 @@ free(long_key); free(long_value); - cxMapDestroy(map); + cxMapFree(map); cxPropertiesDestroy(&prop); CX_TEST_ASSERT(cx_testing_allocator_verify(&talloc));