aboutsummaryrefslogtreecommitdiff
path: root/test/old/testdir/test_cmdline.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-04-25 23:39:15 +0800
committerGitHub <noreply@github.com>2023-04-25 23:39:15 +0800
commit7e0d66801297677ecbb6b35d0c9139e672920be4 (patch)
tree74a2df0aa302d7d0b6b1084b4f54a365c0b0205b /test/old/testdir/test_cmdline.vim
parentac9f8669a8e4bd0cf13468d316d1746be65d3cdc (diff)
downloadrneovim-7e0d66801297677ecbb6b35d0c9139e672920be4.tar.gz
rneovim-7e0d66801297677ecbb6b35d0c9139e672920be4.tar.bz2
rneovim-7e0d66801297677ecbb6b35d0c9139e672920be4.zip
vim-patch:partial:9.0.0359: error message for wrong argument type is not specific (#23315)
Problem: Error message for wrong argument type is not specific. Solution: Include more information in the error. (Yegappan Lakshmanan, closes vim/vim#11037) https://github.com/vim/vim/commit/8deb2b30c77035bb682ccf80b781455ac1d6038b Skip reduce() and deepcopy() changes because of missing patches. Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Diffstat (limited to 'test/old/testdir/test_cmdline.vim')
-rw-r--r--test/old/testdir/test_cmdline.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_cmdline.vim b/test/old/testdir/test_cmdline.vim
index 9d506a66c0..9ed49b44c0 100644
--- a/test/old/testdir/test_cmdline.vim
+++ b/test/old/testdir/test_cmdline.vim
@@ -652,7 +652,7 @@ func Test_getcompletion()
call assert_fails("call getcompletion('\\\\@!\\\\@=', 'buffer')", 'E871:')
call assert_fails('call getcompletion("", "burp")', 'E475:')
- call assert_fails('call getcompletion("abc", [])', 'E475:')
+ call assert_fails('call getcompletion("abc", [])', 'E1174:')
endfunc
" Test for getcompletion() with "fuzzy" in 'wildoptions'