diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-08-25 07:59:17 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2022-08-25 08:27:43 +0800 |
| commit | 6c9a91bebeaef7e863f4b37e8656f49e9aaf33ab (patch) | |
| tree | cae89f4f4ad15feda3961fc48bb9dc2d54320865 /src/nvim/testdir/test_maparg.vim | |
| parent | 6d8b64fffc6face79568ebe0082aedd02ceea16f (diff) | |
| download | rneovim-6c9a91bebeaef7e863f4b37e8656f49e9aaf33ab.tar.gz rneovim-6c9a91bebeaef7e863f4b37e8656f49e9aaf33ab.tar.bz2 rneovim-6c9a91bebeaef7e863f4b37e8656f49e9aaf33ab.zip | |
vim-patch:8.2.2534: missing test coverage
Problem: Missing test coverage.
Solution: Improve test coverage for completion with different encodings,
mapset(), and term function failures. (Dominique Pellé,
closes vim/vim#7877)
https://github.com/vim/vim/commit/a1070eae77f635f08b6f2612726b905796baaa58
Cherry-pick E716 -> E715 change from patch 8.2.4861.
Diffstat (limited to 'src/nvim/testdir/test_maparg.vim')
| -rw-r--r-- | src/nvim/testdir/test_maparg.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_maparg.vim b/src/nvim/testdir/test_maparg.vim index dad4c81a7b..17c5f433ac 100644 --- a/src/nvim/testdir/test_maparg.vim +++ b/src/nvim/testdir/test_maparg.vim @@ -248,6 +248,8 @@ func Test_mapset() bwipe! call assert_fails('call mapset([], v:false, {})', 'E730:') + call assert_fails('call mapset("i", 0, "")', 'E715:') + call assert_fails('call mapset("i", 0, {})', 'E460:') endfunc func Check_ctrlb_map(d, check_alt) |