diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-11-06 06:47:08 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-11-06 08:21:17 +0800 |
commit | fa2ed8ca1fbf98053e8273d814322018895d6b9b (patch) | |
tree | 6f09eb32693debc840bea22f1c88567befb0fc05 | |
parent | a208a8b10eced35916cc1093453f4485bdbccb7a (diff) | |
download | rneovim-fa2ed8ca1fbf98053e8273d814322018895d6b9b.tar.gz rneovim-fa2ed8ca1fbf98053e8273d814322018895d6b9b.tar.bz2 rneovim-fa2ed8ca1fbf98053e8273d814322018895d6b9b.zip |
vim-patch:8.2.2723: assignment test fails
Problem: Assignment test fails.
Solution: Adjust error number.
https://github.com/vim/vim/commit/58fb7c39a04aabfa399ae4f2142ee0728bc22483
Co-authored-by: Bram Moolenaar <Bram@vim.org>
-rw-r--r-- | src/nvim/testdir/test_let.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_let.vim b/src/nvim/testdir/test_let.vim index e8bc2ac155..3ef3d961a7 100644 --- a/src/nvim/testdir/test_let.vim +++ b/src/nvim/testdir/test_let.vim @@ -282,7 +282,7 @@ func Test_let_errors() call assert_fails('let l[:][0] = [5]', 'E708:') let d = {'k' : 4} call assert_fails('let d.# = 5', 'E488:') - call assert_fails('let d.m += 5', 'E734:') + call assert_fails('let d.m += 5', 'E716:') call assert_fails('let m = d[{]', 'E15:') let l = [1, 2] call assert_fails('let l[2] = 0', 'E684:') |