From faf72b58959fba51701e1868e79e0f56ac9ce03c Mon Sep 17 00:00:00 2001 From: Raphael Date: Wed, 17 Sep 2025 16:46:13 +0200 Subject: [PATCH] refactor(test/convert): norming the test of itoa --- test/convert/test_itoa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/convert/test_itoa.c b/test/convert/test_itoa.c index b84d08b..47303a1 100644 --- a/test/convert/test_itoa.c +++ b/test/convert/test_itoa.c @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/09/04 16:54:42 by rparodi #+# #+# */ -/* Updated: 2025/09/08 10:09:06 by rparodi ### ########.fr */ +/* Updated: 2025/09/17 16:40:41 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -19,7 +19,7 @@ int main(void) { - const int integer[] = {0, 42, -42, +-42, -2147483648, 2147483647, 13, 7}; + const int integer[] = {0, 42, -42, + -42, -2147483648, 2147483647, 13, 7}; char result[1024]; size_t i;