From b6ecd634e3174d657c60a061ad74d31705f12f5f Mon Sep 17 00:00:00 2001 From: yuyi Date: Tue, 14 Feb 2023 19:01:35 +0800 Subject: [PATCH] tests: change option to result in vscript_using_generics_in_os.vsh (#17306) --- vlib/v/slow_tests/inout/vscript_using_generics_in_os.vsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/v/slow_tests/inout/vscript_using_generics_in_os.vsh b/vlib/v/slow_tests/inout/vscript_using_generics_in_os.vsh index 4304d97329..f59e56f557 100644 --- a/vlib/v/slow_tests/inout/vscript_using_generics_in_os.vsh +++ b/vlib/v/slow_tests/inout/vscript_using_generics_in_os.vsh @@ -1,6 +1,6 @@ -chdir(temp_dir())? +chdir(temp_dir())! 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 { rm(test_file_name) or {} }