summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_vim9_expr.vim
diff options
context:
space:
mode:
author=?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com>2022-02-26 11:46:13 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-26 11:46:13 +0000
commite41c1dd8890d3f701253255993f4e9af2d12225c (patch)
treef1494998cfabbd084e7e5bf063d1aa53eae37176 /src/testdir/test_vim9_expr.vim
parent4df5b33f206210fec2a0297aea27e7db8b5173c0 (diff)
patch 8.2.4476: operator name spelled wrongv8.2.4476
Problem: Operator name spelled wrong. Solution: Change trinary to ternary. (Goc Dundar, closes #9850)
Diffstat (limited to 'src/testdir/test_vim9_expr.vim')
-rw-r--r--src/testdir/test_vim9_expr.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testdir/test_vim9_expr.vim b/src/testdir/test_vim9_expr.vim
index c4e520bed8..f9cb62cb0e 100644
--- a/src/testdir/test_vim9_expr.vim
+++ b/src/testdir/test_vim9_expr.vim
@@ -12,7 +12,7 @@ def FuncTwo(arg: number): number
enddef
" test cond ? expr : expr
-def Test_expr1_trinary()
+def Test_expr1_ternary()
var lines =<< trim END
assert_equal('one', true ? 'one' : 'two')
assert_equal('one', 1 ?
@@ -74,7 +74,7 @@ def Test_expr1_trinary()
v9.CheckDefAndScriptFailure(lines, ['E1001: Variable not found: FuncOne', 'E121: Undefined variable: FuncTwo'])
enddef
-def Test_expr1_trinary_vimscript()
+def Test_expr1_ternary_vimscript()
# check line continuation
var lines =<< trim END
var name = 1
@@ -170,7 +170,7 @@ def Test_expr1_trinary_vimscript()
v9.CheckDefAndScriptSuccess(lines)
enddef
-func Test_expr1_trinary_fails()
+func Test_expr1_ternary_fails()
call v9.CheckDefAndScriptFailure(["var x = 1 ? 'one'"], "Missing ':' after '?'", 1)
let msg = "White space required before and after '?'"