diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-07-19 22:27:36 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-19 22:27:36 +0800 |
| commit | b154d951e6c01919278bf77a4079396c2df471f4 (patch) | |
| tree | 0cbf132a7edc4dc0b3a5bab76408f35c89536af1 /src/nvim/testdir/test_trycatch.vim | |
| parent | 9e15bdde3ba8c84177d6d912eef3c0e056a76bb9 (diff) | |
| parent | 358f9b776b48e854fdb714c76b24c5929bbd8544 (diff) | |
| download | rneovim-b154d951e6c01919278bf77a4079396c2df471f4.tar.gz rneovim-b154d951e6c01919278bf77a4079396c2df471f4.tar.bz2 rneovim-b154d951e6c01919278bf77a4079396c2df471f4.zip | |
Merge pull request #19434 from zeertzjq/vim-8.2.0509
vim-patch:8.2.{0509,2632}: startup tests
Diffstat (limited to 'src/nvim/testdir/test_trycatch.vim')
| -rw-r--r-- | src/nvim/testdir/test_trycatch.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_trycatch.vim b/src/nvim/testdir/test_trycatch.vim index 598402fafe..646594e482 100644 --- a/src/nvim/testdir/test_trycatch.vim +++ b/src/nvim/testdir/test_trycatch.vim @@ -2014,11 +2014,11 @@ endfunc " Test for verbose messages with :try :catch, and :finally {{{1 func Test_try_catch_verbose() " This test works only when the language is English - if v:lang != "C" && v:lang !~ '^[Ee]n' - return - endif + CheckEnglish set verbose=14 + + " Test for verbose messages displayed when an exception is caught redir => msg try echo i |