From 90d942e2ec6ea1b719eeb77d5d392dea59c5d668 Mon Sep 17 00:00:00 2001 From: StunxFS <56417208+StunxFS@users.noreply.github.com> Date: Fri, 12 Mar 2021 12:05:29 -0400 Subject: [PATCH] os: add missing '.exe' in os_test.v (#9269) --- vlib/os/os_test.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/os/os_test.v b/vlib/os/os_test.v index b055263f74..a603ae72c3 100644 --- a/vlib/os/os_test.v +++ b/vlib/os/os_test.v @@ -547,7 +547,7 @@ fn test_posix_set_bit() { fn test_exists_in_system_path() { assert os.exists_in_system_path('') == false $if windows { - assert os.exists_in_system_path('cmd') == true + assert os.exists_in_system_path('cmd.exe') == true return } assert os.exists_in_system_path('ls') == true