Skip to content

Commit

Permalink
tests: make 'vlib/v/builder/builder_test.v' pass on older Windows ver…
Browse files Browse the repository at this point in the history
…sions < 10. (#20737)
  • Loading branch information
smalltalkman committed Feb 7, 2024
1 parent 205f2dd commit 349741d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/v/builder/builder_test.v
Expand Up @@ -28,7 +28,7 @@ fn test_conditional_executable_removal() {
assert executable !in original_file_list_

assert os.execute('${os.quoted_path(vexe)} run .').output.trim_space() == 'Hello World!'
after_run_file_list := os.ls(test_path)!
after_run_file_list := os.ls(test_path)!.filter(os.exists(it))
dump(after_run_file_list)
assert executable !in after_run_file_list

Expand Down

0 comments on commit 349741d

Please sign in to comment.