mirror of
https://github.com/neovim/neovim.git
synced 2026-08-19 02:24:46 -05:00
vim-patch:8.2.3024: execute() function test fails
Problem: execute() function test fails. Solution: Adjust test for different error. https://github.com/vim/vim/commit/2fb1b89d721682585228f9a6ee7da4b6d3c6634d Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
co-authored by
Bram Moolenaar
parent
cb4eb1b33b
commit
9ded2fb7c8
@@ -45,7 +45,7 @@ func Test_execute_string()
|
||||
if has('float')
|
||||
call assert_fails('call execute(3.4)', 'E492:')
|
||||
call assert_equal("\nx", execute("echo \"x\"", 3.4))
|
||||
call CheckDefExecAndScriptFailure(['execute("echo \"x\"", 3.4)'], 'E806:')
|
||||
call CheckDefExecAndScriptFailure2(['execute("echo \"x\"", 3.4)'], 'E1013: Argument 2: type mismatch, expected string but got float', 'E806:')
|
||||
endif
|
||||
endfunc
|
||||
|
||||
|
||||
@@ -58,6 +58,11 @@ func CheckDefExecAndScriptFailure(lines, error, lnum = -3)
|
||||
return
|
||||
endfunc
|
||||
|
||||
" As CheckDefExecAndScriptFailure() but with two different expected errors.
|
||||
func CheckDefExecAndScriptFailure2(lines, errorDef, errorScript, lnum = -3)
|
||||
return
|
||||
endfunc
|
||||
|
||||
" Check that "lines" inside a legacy function has no error.
|
||||
func CheckLegacySuccess(lines)
|
||||
let cwd = getcwd()
|
||||
|
||||
Reference in New Issue
Block a user