diff --git a/2019/tests/test_solutions.cpp b/2019/tests/test_solutions.cpp index 81e24fa..454043a 100644 --- a/2019/tests/test_solutions.cpp +++ b/2019/tests/test_solutions.cpp @@ -15,6 +15,9 @@ std::vector get_samples() { } } + // Ensure a consistent order. + std::sort(samples.begin(), samples.end()); + return samples; }