diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-10-27 08:56:48 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-27 08:56:48 +0800 |
| commit | bce6891a69c6de3657173b880d3a800dc94cc651 (patch) | |
| tree | 7622a4d9d73b918660bd9c8e762fd09790fae28e /src/nvim/testdir/test_functions.vim | |
| parent | 23204c83ed5333811192513ed9f61d70682fbee5 (diff) | |
| parent | 905bef7bd9cd5d1751fc09aad3c6fb78e2c60ff8 (diff) | |
| download | rneovim-bce6891a69c6de3657173b880d3a800dc94cc651.tar.gz rneovim-bce6891a69c6de3657173b880d3a800dc94cc651.tar.bz2 rneovim-bce6891a69c6de3657173b880d3a800dc94cc651.zip | |
Merge pull request #20823 from zeertzjq/vim-8.2.2100
vim-patch:8.2.{2100,2726,2727}
Diffstat (limited to 'src/nvim/testdir/test_functions.vim')
| -rw-r--r-- | src/nvim/testdir/test_functions.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_functions.vim b/src/nvim/testdir/test_functions.vim index 1b9b9abd91..b751215b79 100644 --- a/src/nvim/testdir/test_functions.vim +++ b/src/nvim/testdir/test_functions.vim @@ -1865,6 +1865,7 @@ func Test_call() let mydict = {'data': [0, 1, 2, 3], 'len': function("Mylen")} eval mydict.len->call([], mydict)->assert_equal(4) call assert_fails("call call('Mylen', [], 0)", 'E715:') + call assert_fails('call foo', 'E107:') endfunc func Test_char2nr() |