diff options
author | erw7 <erw7.github@gmail.com> | 2022-11-05 19:40:02 +0900 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-01-16 17:58:57 +0800 |
commit | ce66f158b55287924b33451b272de847ab75b332 (patch) | |
tree | 0e38d3bdb96527db820b18795c3b437a7885b6d2 /test | |
parent | 307efe4906de9f0b7d8611ea36bddb85493c1447 (diff) | |
download | rneovim-ce66f158b55287924b33451b272de847ab75b332.tar.gz rneovim-ce66f158b55287924b33451b272de847ab75b332.tar.bz2 rneovim-ce66f158b55287924b33451b272de847ab75b332.zip |
feat(api): show more exception info
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/autocmd/termxx_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/autocmd/termxx_spec.lua b/test/functional/autocmd/termxx_spec.lua index 4717b1fa2e..0a33f1b2ac 100644 --- a/test/functional/autocmd/termxx_spec.lua +++ b/test/functional/autocmd/termxx_spec.lua @@ -24,7 +24,7 @@ describe('autocmd TermClose', function() local function test_termclose_delete_own_buf() command('autocmd TermClose * bdelete!') command('terminal') - matches('^Vim%(bdelete%):E937: Attempt to delete a buffer that is in use: term://', + matches('^TermClose Autocommands for "%*": Vim%(bdelete%):E937: Attempt to delete a buffer that is in use: term://', pcall_err(command, 'bdelete!')) assert_alive() end |