diff -r fdabd1240b69 -r a9d656e4f7ce test/dlist_tests.c --- a/test/dlist_tests.c Wed Aug 15 19:32:29 2012 +0200 +++ b/test/dlist_tests.c Thu Aug 16 11:31:16 2012 +0200 @@ -166,7 +166,7 @@ ucx_dlist_free(copy); } -UCX_TEST_IMPLEMENT(test_ucx_dlist_qsort) { +UCX_TEST_IMPLEMENT(test_ucx_dlist_sort) { UcxDlist *list = ucx_dlist_append(NULL, "this"); list = ucx_dlist_append(list, "is"); list = ucx_dlist_append(list, "a"); @@ -183,7 +183,7 @@ expected = ucx_dlist_append(expected, "test"); expected = ucx_dlist_append(expected, "this"); - list = ucx_dlist_qsort(list, cmp_string, NULL); + list = ucx_dlist_sort(list, cmp_string, NULL); UCX_TEST_BEGIN UCX_TEST_ASSERT(