Skip to content

Commit e646bd6

Browse files
committed
cleanup simplification for diagnosing failure
1 parent f1314a8 commit e646bd6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

vlib/v/pref/vsh_envbang_test.v

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ println('hello')
2121
println(os.args)
2222
")!
2323
os.chmod(rnd_vsh_script_path, 0o700)!
24-
cmd := '${os.quoted_path(rnd_vsh_script_path)} abc 123 -option'
25-
res := os.execute(cmd)
24+
res := os.execute('${os.quoted_path(rnd_vsh_script_path)} abc 123 -option')
2625
assert res.exit_code == 0
2726
lines := res.output.split_into_lines()
2827
assert lines[0] == 'hello'

0 commit comments

Comments
 (0)