aboutsummaryrefslogtreecommitdiff
path: root/test/old/testdir/test_expr.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-04-25 21:32:12 +0800
committerGitHub <noreply@github.com>2023-04-25 21:32:12 +0800
commit43c49746d9cf82dba0d56b07d39722f9ebeecf90 (patch)
tree3d7f3aeb8522e11b55fc5ac296c9c13d370933e1 /test/old/testdir/test_expr.vim
parent2e8410b7be9dce7e5fa12a442e19d548bfb260bc (diff)
downloadrneovim-43c49746d9cf82dba0d56b07d39722f9ebeecf90.tar.gz
rneovim-43c49746d9cf82dba0d56b07d39722f9ebeecf90.tar.bz2
rneovim-43c49746d9cf82dba0d56b07d39722f9ebeecf90.zip
vim-patch:9.0.0335: checks for Dictionary argument often give a vague error (#23309)
Problem: Checks for Dictionary argument often give a vague error message. Solution: Give a useful error message. (Yegappan Lakshmanan, closes vim/vim#11009) https://github.com/vim/vim/commit/04c4c5746e15884768d2cb41370c3276a196cd4c Cherry-pick removal of E922 from docs from patch 9.0.1403. Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Diffstat (limited to 'test/old/testdir/test_expr.vim')
-rw-r--r--test/old/testdir/test_expr.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_expr.vim b/test/old/testdir/test_expr.vim
index dee7266bb5..ff3dfb83cb 100644
--- a/test/old/testdir/test_expr.vim
+++ b/test/old/testdir/test_expr.vim
@@ -105,7 +105,7 @@ func Test_dict()
END
call CheckLegacyAndVim9Success(lines)
- call CheckLegacyAndVim9Failure(["VAR i = has_key([], 'a')"], ['E715:', 'E1013:', 'E1206:'])
+ call CheckLegacyAndVim9Failure(["VAR i = has_key([], 'a')"], ['E1206:', 'E1013:', 'E1206:'])
endfunc
func Test_strgetchar()