aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarold Brenes <harito@gmail.com>2026-02-11 14:14:27 -0500
committerGitHub <noreply@github.com>2026-02-11 14:14:27 -0500
commit7ea074a2486084f5ea058d401af55fd73ca66c7a (patch)
tree16a510aa8234938b2d8abea7380a50f0634480fe
parentf50dd2f639bf92f746067dca891a4c6fbfe92650 (diff)
Update core/testing/runner.odin
Write string directly Co-authored-by: Laytan <laytanlaats@hotmail.com>
-rw-r--r--core/testing/runner.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/testing/runner.odin b/core/testing/runner.odin
index 880c21327..d4dc2408c 100644
--- a/core/testing/runner.odin
+++ b/core/testing/runner.odin
@@ -216,7 +216,7 @@ parse_cli_options :: proc(argv: []string, opts: ^Options, stdout, stderr: io.Wri
if len(test_names.buf) > 0 {
strings.write_byte(&test_names, ',')
}
- strings.write_bytes(&test_names, transmute([]u8)tests)
+ strings.write_string(&test_names, tests)
} else if arg == "-help" {
exe_name := "test"
if path, err := os.get_executable_path(context.temp_allocator); err == nil {