diff -r a6a99e721660 -r 57ea041df22f test/dlist_tests.c --- a/test/dlist_tests.c Wed Feb 27 11:37:27 2013 +0100 +++ b/test/dlist_tests.c Wed Feb 27 11:48:29 2013 +0100 @@ -3,7 +3,7 @@ */ #include "dlist_tests.h" -#include "ucx/comparator.h" +#include "ucx/utils.h" UCX_TEST_IMPLEMENT(test_ucx_dlist_append) { UcxDlist *list = ucx_dlist_append(NULL, (void*)"Hello"); @@ -171,7 +171,7 @@ UcxDlist *list = ucx_dlist_append(NULL, hello); list = ucx_dlist_append(list, world); - UcxDlist *copy = ucx_dlist_clone(list, copy_string, NULL); + UcxDlist *copy = ucx_dlist_clone(list, ucx_strcpy, NULL); UCX_TEST_BEGIN UCX_TEST_ASSERT(ucx_dlist_equals(list, copy, ucx_strcmp, NULL), "failed");