Tue, 11 Nov 2025 18:15:42 +0100
tighten the test expectation for cx_array_reserve() after the recent change
| tests/test_list.c | file | annotate | diff | comparison | revisions |
--- a/tests/test_list.c Tue Nov 11 18:15:17 2025 +0100 +++ b/tests/test_list.c Tue Nov 11 18:15:42 2025 +0100 @@ -157,7 +157,7 @@ result = cx_array_simple_reserve(arr, 20); CX_TEST_ASSERT(result == 0); CX_TEST_ASSERT(arr_size == 5); - CX_TEST_ASSERT(arr_capacity >= 25); + CX_TEST_ASSERT(arr_capacity == 25); } cxFreeDefault(arr); }