1
0
forked from aniani/vim

patch 9.0.1258: code style test fails

Problem:    Code style test fails.
Solution:   Adjust test files.
This commit is contained in:
Bram Moolenaar
2023-01-28 19:38:49 +00:00
parent 94722c5107
commit 755bf2b3d2
3 changed files with 27 additions and 25 deletions

View File

@@ -542,12 +542,12 @@ def Test_try_catch_throw()
if 1
else
try | catch /pat/ | endtry
try | catch /pat/
try | catch /pat/
endtry
try
try
catch /pat/ | endtry
try
catch /pat/
try
catch /pat/
endtry
endif
@@ -617,7 +617,7 @@ def Test_try_catch_throw()
endtry
assert_equal(266, n)
l = [1, 2, 3]
l = [1, 2, 3]
try
[n] = l
catch /E1093:/
@@ -1336,7 +1336,7 @@ def Test_statusline_syntax()
endfunc
set laststatus=2 statusline=%!Status()
redrawstatus
set laststatus statusline=
set laststatus statusline=
END
v9.CheckScriptSuccess(lines)
enddef
@@ -3601,7 +3601,7 @@ def Test_declare_script_var_in_func()
END
v9.CheckScriptFailure(lines, 'E1269:')
enddef
def Test_lock_script_var()
var lines =<< trim END
vim9script
@@ -3626,7 +3626,7 @@ def Test_lock_script_var()
END
v9.CheckScriptSuccess(lines)
enddef
func Test_vim9script_not_global()
" check that items defined in Vim9 script are script-local, not global