summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_expr.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-05-07 18:53:49 +0100
committerBram Moolenaar <Bram@vim.org>2023-05-07 18:53:49 +0100
commite4098457ab9c94225b1b0e3c5e06b82b75587971 (patch)
tree549c60e0f17dde15e4a00ded6436e5e3309e112a /src/testdir/test_expr.vim
parent30b6d6104c3d541c41c868989c020b743e01af08 (diff)
patch 9.0.1522: some functions give two error messagesv9.0.1522
Problem: Some functions give two error messages. Solution: Do not give a second error message. (closes #12352)
Diffstat (limited to 'src/testdir/test_expr.vim')
-rw-r--r--src/testdir/test_expr.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/testdir/test_expr.vim b/src/testdir/test_expr.vim
index 4e02de010a..b3a8c49c54 100644
--- a/src/testdir/test_expr.vim
+++ b/src/testdir/test_expr.vim
@@ -160,6 +160,8 @@ func Test_strcharpart()
call assert_equal('edit', "editor"[-10 : 3])
END
call v9.CheckLegacyAndVim9Success(lines)
+
+ call assert_fails('echo strcharpart("", 0, 0, {})', ['E728:', 'E728:'])
endfunc
func Test_getreg_empty_list()