From 3aed99093b32f8733692146ec015952b72e2b1c0 Mon Sep 17 00:00:00 2001 From: Harold Brenes Date: Wed, 11 Feb 2026 13:46:19 -0500 Subject: [PATCH] Rebase and update to reflect `os2` -> `os` --- core/testing/runner.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/testing/runner.odin b/core/testing/runner.odin index 8e1689df5..97f17b199 100644 --- a/core/testing/runner.odin +++ b/core/testing/runner.odin @@ -219,7 +219,7 @@ parse_cli_options :: proc(argv: []string, opts: ^Options, stdout, stderr: io.Wri strings.write_bytes(&test_names, transmute([]u8)tests) } else if arg == "-help" { exe_name := "test" - if path, err := os2.get_executable_path(context.temp_allocator); err == nil { + if path, err := os.get_executable_path(context.temp_allocator); err == nil { exe_name = slashpath.base(path) }