comparison src/testdir/test_vim9_script.vim @ 22296:006b8ab9d554 v8.2.1697

patch 8.2.1697: inconsistent capitalization of error messages Commit: https://github.com/vim/vim/commit/7707228aace9aff16434edf5377a354c6ad07316 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 16 17:55:40 2020 +0200 patch 8.2.1697: inconsistent capitalization of error messages Problem: Inconsistent capitalization of error messages. Solution: Always start with a capital.
author Bram Moolenaar <Bram@vim.org>
date Wed, 16 Sep 2020 18:00:04 +0200
parents 6b385c2b9ff5
children 36e8e046c335
comparison
equal deleted inserted replaced
22295:dbcb2b62f53a 22296:006b8ab9d554
1972 1972
1973 try 1973 try
1974 source Ximport.vim 1974 source Ximport.vim
1975 catch /E1001/ 1975 catch /E1001/
1976 # Error should be fore the Xexported.vim file. 1976 # Error should be fore the Xexported.vim file.
1977 assert_match('E1001: variable not found: notDefined', v:exception) 1977 assert_match('E1001: Variable not found: notDefined', v:exception)
1978 assert_match('function <SNR>\d\+_ImpFunc\[1\]..<SNR>\d\+_ExpFunc, line 1', v:throwpoint) 1978 assert_match('function <SNR>\d\+_ImpFunc\[1\]..<SNR>\d\+_ExpFunc, line 1', v:throwpoint)
1979 endtry 1979 endtry
1980 1980
1981 delete('Xexported.vim') 1981 delete('Xexported.vim')
1982 delete('Ximport.vim') 1982 delete('Ximport.vim')