tests: put test back in a sensible order

This commit is contained in:
Khaïs COLIN 2025-03-04 15:14:55 +01:00 committed by Khaïs COLIN
parent e6a9010362
commit 4c37ec5188

View file

@ -6,7 +6,7 @@
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/24 17:40:48 by khais #+# #+# */
/* Updated: 2025/03/04 15:12:04 by khais ### ########.fr */
/* Updated: 2025/03/04 15:13:21 by khais ### ########.fr */
/* */
/* ************************************************************************** */
@ -178,8 +178,6 @@ static void test_parse_command_list_invalid_pipeline(void)
int main(void)
{
test_parse_command_list_invalid_pipeline();
do_leak_check();
test_parse_command_list_empty();
do_leak_check();
test_parse_command_list_single_pipeline();
@ -194,5 +192,7 @@ int main(void)
do_leak_check();
test_parse_command_list_quad_both_operators();
do_leak_check();
test_parse_command_list_invalid_pipeline();
do_leak_check();
return (0);
}