changeset 24641:000568dd900a v8.2.2859

patch 8.2.2859: Tcl test fails because of changed error message Commit: https://github.com/vim/vim/commit/dcfc311198b174468c007ec4b5b22b33c2c11c92 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 16 20:06:59 2021 +0200 patch 8.2.2859: Tcl test fails because of changed error message Problem: Tcl test fails because of changed error message. Solution: Adjust the expected error message.
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 May 2021 20:15:02 +0200
parents 2a685774ad69
children 6f451b9cda8e
files src/testdir/test_tcl.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_tcl.vim
+++ b/src/testdir/test_tcl.vim
@@ -145,7 +145,7 @@ func Test_vim_expr()
 
   call assert_fails('tcl ::vim::expr x y',
         \           'wrong # args: should be "::vim::expr vimExpr"')
-  call assert_fails('tcl ::vim::expr 1-', 'E15: Invalid expression: 1-')
+  call assert_fails('tcl ::vim::expr 1-', 'E15: Invalid expression: "1-"')
 endfunc
 
 " Test ::vim::command
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2859,
+/**/
     2858,
 /**/
     2857,