diff -r fdabd1240b69 -r a9d656e4f7ce test/list_tests.c --- a/test/list_tests.c Wed Aug 15 19:32:29 2012 +0200 +++ b/test/list_tests.c Thu Aug 16 11:31:16 2012 +0200 @@ -154,7 +154,7 @@ ucx_list_free(copy); } -UCX_TEST_IMPLEMENT(test_ucx_list_qsort) { +UCX_TEST_IMPLEMENT(test_ucx_list_sort) { UcxList *list = ucx_list_append(NULL, "this"); list = ucx_list_append(list, "is"); list = ucx_list_append(list, "a"); @@ -171,7 +171,7 @@ expected = ucx_list_append(expected, "test"); expected = ucx_list_append(expected, "this"); - list = ucx_list_qsort(list, cmp_string, NULL); + list = ucx_list_sort(list, cmp_string, NULL); UCX_TEST_BEGIN UCX_TEST_ASSERT(