diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-11-05 18:51:03 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-05 18:51:03 +0800 |
| commit | 921101e0763e43928904dc58fa0ba2592b9b75d5 (patch) | |
| tree | 65e71b652e06fa697b9c332df94f227d0a672472 /src/nvim/testdir/test_functions.vim | |
| parent | 1bcddd5b53a0993789df7ec91fecea47dcfcccfa (diff) | |
| parent | 3c0651fb459189f5be6165454810e4476296cb7c (diff) | |
| download | rneovim-921101e0763e43928904dc58fa0ba2592b9b75d5.tar.gz rneovim-921101e0763e43928904dc58fa0ba2592b9b75d5.tar.bz2 rneovim-921101e0763e43928904dc58fa0ba2592b9b75d5.zip | |
Merge pull request #20774 from zeertzjq/vim-8.2.4679
vim-patch:8.2.{1506,1600,1624,1626,1751,2606,4679}
Diffstat (limited to 'src/nvim/testdir/test_functions.vim')
| -rw-r--r-- | src/nvim/testdir/test_functions.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_functions.vim b/src/nvim/testdir/test_functions.vim index 06c995db86..d2603809b9 100644 --- a/src/nvim/testdir/test_functions.vim +++ b/src/nvim/testdir/test_functions.vim @@ -1101,8 +1101,8 @@ func Test_charidx() call assert_fails('let x = charidx([], 1)', 'E474:') call assert_fails('let x = charidx("abc", [])', 'E474:') call assert_fails('let x = charidx("abc", 1, [])', 'E474:') - call assert_fails('let x = charidx("abc", 1, -1)', 'E474:') - call assert_fails('let x = charidx("abc", 1, 2)', 'E474:') + call assert_fails('let x = charidx("abc", 1, -1)', 'E1023:') + call assert_fails('let x = charidx("abc", 1, 2)', 'E1023:') endfunc func Test_count() |