0
0
mirror of https://github.com/vim/vim.git synced 2025-10-09 06:14:17 -04:00

patch 8.2.1697: inconsistent capitalization of error messages

Problem:    Inconsistent capitalization of error messages.
Solution:   Always start with a capital.
This commit is contained in:
Bram Moolenaar
2020-09-16 17:55:40 +02:00
parent 2c12f89055
commit 7707228aac
6 changed files with 69 additions and 67 deletions

View File

@@ -1974,7 +1974,7 @@ def Test_import_compile_error()
source Ximport.vim
catch /E1001/
# Error should be fore the Xexported.vim file.
assert_match('E1001: variable not found: notDefined', v:exception)
assert_match('E1001: Variable not found: notDefined', v:exception)
assert_match('function <SNR>\d\+_ImpFunc\[1\]..<SNR>\d\+_ExpFunc, line 1', v:throwpoint)
endtry