diff src/testdir/test_tcl.vim @ 28735:c428a4e53b9c v8.2.4892

patch 8.2.4892: test failures because of changed error messages Commit: https://github.com/vim/vim/commit/ec892234788d37bfed47d8bf82dd4cae8d335ad9 Author: Bram Moolenaar <Bram@vim.org> Date: Fri May 6 17:53:06 2022 +0100 patch 8.2.4892: test failures because of changed error messages Problem: Test failures because of changed error messages. Solution: Adjust the exptected error messages.
author Bram Moolenaar <Bram@vim.org>
date Fri, 06 May 2022 19:00:05 +0200
parents 000568dd900a
children c8ebe35b2475
line wrap: on
line diff
--- a/src/testdir/test_tcl.vim
+++ b/src/testdir/test_tcl.vim
@@ -711,7 +711,7 @@ func Test_tcl_exit()
   call assert_fails('tcl exit x', 'expected integer but got "x"')
 
   tcl set foo "foo"
-  call assert_fails('tcl exit 3', 'E572: exit code 3')
+  call assert_fails('tcl exit 3', 'E572: Exit code 3')
 
   " The Tcl interpreter should have been deleted and a new one
   " is re-created with the next :tcl command.