--- a/tests/test_list.c Tue Dec 16 18:32:35 2025 +0100 +++ b/tests/test_list.c Tue Dec 16 18:33:12 2025 +0100 @@ -3097,7 +3097,7 @@ } } -CX_TEST(test_list_simple_clones) { +CX_TEST(test_list_shallow_clones) { int a[] = {1, 2, 5, 8, 10}; int b[] = {1, 3, 5, 7, 9, 11}; @@ -3652,7 +3652,7 @@ cx_test_register(suite, test_list_intersection_sorted); cx_test_register(suite, test_list_intersection_unsorted_alloc_fail); cx_test_register(suite, test_list_intersection_sorted_alloc_fail); - cx_test_register(suite, test_list_simple_clones); + cx_test_register(suite, test_list_shallow_clones); return suite; }