Update core/testing/runner.odin

Use `strings.to_string`

Co-authored-by: Laytan <laytanlaats@hotmail.com>
This commit is contained in:
Harold Brenes
2026-02-11 14:14:58 -05:00
committed by GitHub
parent 7ea074a248
commit 3b8cb7fc61

View File

@@ -241,7 +241,7 @@ parse_cli_options :: proc(argv: []string, opts: ^Options, stdout, stderr: io.Wri
}
}
opts.test_names = string(test_names.buf[:])
opts.test_names = strings.to_string(test_names)
}
runner :: proc(internal_tests: []Internal_Test) -> bool {