From a1faad9315ece8e7146e9d2263ceb3d42ea0619a Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Fri, 7 Nov 2025 15:08:46 +0100 Subject: [PATCH] Fix the help text for the --order command line argument It was changed to rand in v3.9.0. --- src/catch2/internal/catch_commandline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/catch2/internal/catch_commandline.cpp b/src/catch2/internal/catch_commandline.cpp index db903507..88454c0a 100644 --- a/src/catch2/internal/catch_commandline.cpp +++ b/src/catch2/internal/catch_commandline.cpp @@ -265,7 +265,7 @@ namespace Catch { ( "list all listeners" ) | Opt( setTestOrder, "decl|lex|rand" ) ["--order"] - ( "test case order (defaults to decl)" ) + ( "test case order (defaults to rand)" ) | Opt( setRngSeed, "'time'|'random-device'|number" ) ["--rng-seed"] ( "set a specific seed for random numbers" )