diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-04-15 13:17:32 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-04-15 13:31:10 +0800 |
commit | 4b49f312a05214d5d1974f7ac2702ffb407fc558 (patch) | |
tree | f4f7515c461d2d599e60b043995843fa54062f3e /test/old/testdir/test_eval_stuff.vim | |
parent | 3d80392cab8ba41757769e18ffde9e8258365472 (diff) | |
download | rneovim-4b49f312a05214d5d1974f7ac2702ffb407fc558.tar.gz rneovim-4b49f312a05214d5d1974f7ac2702ffb407fc558.tar.bz2 rneovim-4b49f312a05214d5d1974f7ac2702ffb407fc558.zip |
vim-patch:8.2.0633: crash when using null partial in filter()
Problem: Crash when using null partial in filter().
Solution: Fix crash. Add more tests. (Yegappan Lakshmanan, closes vim/vim#5976)
https://github.com/vim/vim/commit/9d8d0b5c644ea53364d04403740b3f23e57c1497
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'test/old/testdir/test_eval_stuff.vim')
-rw-r--r-- | test/old/testdir/test_eval_stuff.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_eval_stuff.vim b/test/old/testdir/test_eval_stuff.vim index 1cf039342d..6a7fb223e0 100644 --- a/test/old/testdir/test_eval_stuff.vim +++ b/test/old/testdir/test_eval_stuff.vim @@ -205,7 +205,7 @@ func Test_vvar_scriptversion1() call assert_equal(511, 0o777) endfunc -func Test_excute_null() +func Test_execute_cmd_with_null() call assert_fails('execute v:_null_list', 'E730:') call assert_fails('execute v:_null_dict', 'E731:') call assert_fails('execute v:_null_blob', 'E976:') |