From f50dd2f639bf92f746067dca891a4c6fbfe92650 Mon Sep 17 00:00:00 2001 From: Harold Brenes Date: Wed, 11 Feb 2026 14:13:49 -0500 Subject: [PATCH] Update core/testing/runner.odin Remove formatting `wprintln` variant where it is not needed Co-authored-by: Laytan --- core/testing/runner.odin | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/testing/runner.odin b/core/testing/runner.odin index f4cab2815..880c21327 100644 --- a/core/testing/runner.odin +++ b/core/testing/runner.odin @@ -225,11 +225,11 @@ parse_cli_options :: proc(argv: []string, opts: ^Options, stdout, stderr: io.Wri fmt.wprintfln(stdout, "Usage: %v [OPTIONS]", exe_name) fmt.wprintfln(stdout, "OPTIONS:") - fmt.wprintfln(stdout, " -help:") - fmt.wprintfln(stdout, " Display this help text and exit.") + fmt.wprintln(stdout, " -help:") + fmt.wprintln(stdout, " Display this help text and exit.") fmt.wprintln(stdout) - fmt.wprintfln(stdout, " -tests:") - fmt.wprintfln(stdout, " Specify a specific set of tests to run by name.\n" + + fmt.wprintln(stdout, " -tests:") + fmt.wprintln(stdout, " Specify a specific set of tests to run by name.\n" + " Each test is separated by a comma and may optionally include the package name.\n" + " This may be useful when running tests on multiple packages with `-all-packages`.\n" + " The format is: `package.test_name,test_name_only,...`")