From 8566d61d02409bc9dd0400d805d66fefd149e2cf Mon Sep 17 00:00:00 2001 From: Tristan Date: Mon, 4 Dec 2023 17:09:45 +0100 Subject: [PATCH] Reorder test per part --- tests/Pest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Pest.php b/tests/Pest.php index 8b753f2..31963a1 100644 --- a/tests/Pest.php +++ b/tests/Pest.php @@ -78,8 +78,8 @@ function testYear(int $year): void $class = new $className(); $class->loadData(); runTestForDay($class, $name.' / Part 1', 'part1Data', 'part1ExampleResult', true); - runTestForDay($class, $name.' / Part 2', 'part2Data', 'part2ExampleResult', true); runTestForDay($class, $name.' / Part 1', 'part1Data', 'part1Result', false); + runTestForDay($class, $name.' / Part 2', 'part2Data', 'part2ExampleResult', true); runTestForDay($class, $name.' / Part 2', 'part2Data', 'part2Result', false); })->group('Y'.$year); }