diff src/testdir/test_vim9_func.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 f24d4826e6bf
children 7fd3a9f05037
line wrap: on
line diff
--- a/src/testdir/test_vim9_func.vim
+++ b/src/testdir/test_vim9_func.vim
@@ -3709,7 +3709,7 @@ def Run_Test_opfunc_error()
 
   var buf = g:RunVimInTerminal('-S XTest_opfunc_error', {rows: 6, wait_for_ruler: 0})
   g:WaitForAssert(() => assert_match('Press ENTER', term_getline(buf, 6)))
-  g:WaitForAssert(() => assert_match('E684: list index out of range: 0', term_getline(buf, 5)))
+  g:WaitForAssert(() => assert_match('E684: List index out of range: 0', term_getline(buf, 5)))
 
   # clean up
   g:StopVimInTerminal(buf)