summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_assert.vim
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2022-09-02 15:15:27 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-02 15:15:27 +0100
commit8deb2b30c77035bb682ccf80b781455ac1d6038b (patch)
tree66a1d18ad9971c123f42bd7879c56706e19be73b /src/testdir/test_assert.vim
parent119167265ebc7eced210a7f8ed2f4b90378f98f1 (diff)
patch 9.0.0359: error message for wrong argument type is not specificv9.0.0359
Problem: Error message for wrong argument type is not specific. Solution: Include more information in the error. (Yegappan Lakshmanan, closes #11037)
Diffstat (limited to 'src/testdir/test_assert.vim')
-rw-r--r--src/testdir/test_assert.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_assert.vim b/src/testdir/test_assert.vim
index 7c9d090b39..f11a3a9365 100644
--- a/src/testdir/test_assert.vim
+++ b/src/testdir/test_assert.vim
@@ -368,7 +368,7 @@ func Test_override()
eval 1->test_override('redraw')
call test_override('ALL', 0)
call assert_fails("call test_override('xxx', 1)", 'E475:')
- call assert_fails("call test_override('redraw', 'yes')", 'E474:')
+ call assert_fails("call test_override('redraw', 'yes')", 'E1210:')
endfunc
func Test_mouse_position()