From d94d8486699c53613349f47fc43d05dcecb0cc5c Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 26 Nov 2020 14:54:23 +0100 Subject: [PATCH] tests: vector: augment size of input vector Mostly to actually test the intro_sort function --- tests/vector.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/vector.c b/tests/vector.c index 9add173..430d90a 100644 --- a/tests/vector.c +++ b/tests/vector.c @@ -3,7 +3,7 @@ #include "tupperware/vector.h" struct vector v; -const size_t init_n = 10; +const size_t init_n = 42; static void setup(void) {