forked from aniani/vim
patch 8.2.3221: Vim9: argument types are not checked at compile time
Problem: Vim9: argument types are not checked at compile time. Solution: Add several more type checks. (Yegappan Lakshmanan, closes #8632)
This commit is contained in:
committed by
Bram Moolenaar
parent
2ec28aec9d
commit
a764e73d4f
@@ -268,21 +268,21 @@ func Test_assert_fail_fails()
|
||||
catch
|
||||
let exp = v:exception
|
||||
endtry
|
||||
call assert_match("E856: \"assert_fails()\" second argument", exp)
|
||||
call assert_match("E1174: String required for argument 2", exp)
|
||||
|
||||
try
|
||||
call assert_equal(1, assert_fails('xxx', 'E492', '', 'burp'))
|
||||
catch
|
||||
let exp = v:exception
|
||||
endtry
|
||||
call assert_match("E1115: \"assert_fails()\" fourth argument must be a number", exp)
|
||||
call assert_match("E1210: Number required for argument 4", exp)
|
||||
|
||||
try
|
||||
call assert_equal(1, assert_fails('xxx', 'E492', '', 54, 123))
|
||||
catch
|
||||
let exp = v:exception
|
||||
endtry
|
||||
call assert_match("E1116: \"assert_fails()\" fifth argument must be a string", exp)
|
||||
call assert_match("E1174: String required for argument 5", exp)
|
||||
endfunc
|
||||
|
||||
func Test_assert_fails_in_try_block()
|
||||
|
||||
Reference in New Issue
Block a user