summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_expr.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-05-08 15:31:38 +0100
committerBram Moolenaar <Bram@vim.org>2023-05-08 15:31:38 +0100
commit8cf51376b842e0060edf08bd2e5bd9933c552ecf (patch)
treee98edb7a30d0b40eacbd0281313621351ac9d055 /src/testdir/test_expr.vim
parent276410e78f0b82e3123059383994d2f4c578dfbd (diff)
patch 9.0.1524: passing -1 for bool is not always rejectedv9.0.1524
Problem: Passing -1 for bool is not always rejected. Solution: Check for error in a better way. (closes #12358)
Diffstat (limited to 'src/testdir/test_expr.vim')
-rw-r--r--src/testdir/test_expr.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/testdir/test_expr.vim b/src/testdir/test_expr.vim
index b3a8c49c54..68cbeb59d0 100644
--- a/src/testdir/test_expr.vim
+++ b/src/testdir/test_expr.vim
@@ -161,7 +161,8 @@ func Test_strcharpart()
END
call v9.CheckLegacyAndVim9Success(lines)
- call assert_fails('echo strcharpart("", 0, 0, {})', ['E728:', 'E728:'])
+ call assert_fails('call strcharpart("", 0, 0, {})', ['E728:', 'E728:'])
+ call assert_fails('call strcharpart("", 0, 0, -1)', ['E1023:', 'E1023:'])
endfunc
func Test_getreg_empty_list()