1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tests: change option to result in vscript_using_generics_in_os.vsh (#17306)

This commit is contained in:
yuyi 2023-02-14 19:01:35 +08:00 committed by GitHub
parent b13f7118ab
commit b6ecd634e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
chdir(temp_dir())? chdir(temp_dir())!
test_file_name := 'test_file' test_file_name := 'test_file'
write_file_array(test_file_name, [u8(0xff), 0xff, 0xff, 0xff])? write_file_array(test_file_name, [u8(0xff), 0xff, 0xff, 0xff])!
defer { defer {
rm(test_file_name) or {} rm(test_file_name) or {}
} }