diff -r a6a99e721660 -r 57ea041df22f test/list_tests.c --- a/test/list_tests.c Wed Feb 27 11:37:27 2013 +0100 +++ b/test/list_tests.c Wed Feb 27 11:48:29 2013 +0100 @@ -3,7 +3,7 @@ */ #include "list_tests.h" -#include "ucx/comparator.h" +#include "ucx/utils.h" UCX_TEST_IMPLEMENT(test_ucx_list_append) { UcxList *list = ucx_list_append(NULL, (void*)"Hello"); @@ -159,7 +159,7 @@ UcxList *list = ucx_list_append(NULL, hello); list = ucx_list_append(list, world); - UcxList *copy = ucx_list_clone(list, copy_string, NULL); + UcxList *copy = ucx_list_clone(list, ucx_strcpy, NULL); UCX_TEST_BEGIN UCX_TEST_ASSERT(ucx_list_equals(list, copy, ucx_strcmp, NULL), "failed");