diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-03-14 06:44:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 06:44:50 +0800 |
commit | b17be231a61f69b52eb809b6c72b20d3b089495d (patch) | |
tree | ba51454c65693b7f738da60e52f4c4fb80c874b9 /test | |
parent | bbb68e2a034ad3aaea99178c09301ca458ee8dff (diff) | |
download | rneovim-b17be231a61f69b52eb809b6c72b20d3b089495d.tar.gz rneovim-b17be231a61f69b52eb809b6c72b20d3b089495d.tar.bz2 rneovim-b17be231a61f69b52eb809b6c72b20d3b089495d.zip |
vim-patch:9.1.0178: E1513 might be confusing (#27846)
Problem: E1513 might be confusing
(Christoph Thoma)
Solution: reword error message, fix test to not
depend on the actual message
fixes: vim/vim#14189
https://github.com/vim/vim/commit/0a32b8854b52381fd17a6fcc5e38a3b9e77c8923
Co-authored-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_winfixbuf.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/old/testdir/test_winfixbuf.vim b/test/old/testdir/test_winfixbuf.vim index 112eccf3ef..320e73f378 100644 --- a/test/old/testdir/test_winfixbuf.vim +++ b/test/old/testdir/test_winfixbuf.vim @@ -493,7 +493,7 @@ func Test_browse_edit_fail() try browse edit! other call assert_equal(l:other, bufnr()) - catch /E338:/ + catch /^Vim\%((\a\+)\)\=:E338:/ " Ignore E338, which occurs if console Vim is built with +browse. " Console Vim without +browse will treat this as a regular :edit. endtry @@ -511,7 +511,7 @@ func Test_browse_edit_pass() try browse write other - catch /E338:/ + catch /^Vim\%((\a\+)\)\=:E338:/ " Ignore E338, which occurs if console Vim is built with +browse. " Console Vim without +browse will treat this as a regular :write. endtry @@ -2532,7 +2532,7 @@ EOF try pyxdo test_winfixbuf_Test_pythonx_pyxdo_set_buffer() - catch /pynvim\.api\.common\.NvimError: E1513: Cannot edit buffer\. 'winfixbuf' is enabled/ + catch /pynvim\.api\.common\.NvimError: E1513:/ let l:caught = 1 endtry @@ -2563,7 +2563,7 @@ func Test_pythonx_pyxfile() try pyxfile file.py - catch /pynvim\.api\.common\.NvimError: E1513: Cannot edit buffer\. 'winfixbuf' is enabled/ + catch /pynvim\.api\.common\.NvimError: E1513:/ let l:caught = 1 endtry @@ -2596,7 +2596,7 @@ import vim buffer = vim.vars["_previous_buffer"] vim.current.buffer = vim.buffers[buffer] EOF - catch /pynvim\.api\.common\.NvimError: E1513: Cannot edit buffer\. 'winfixbuf' is enabled/ + catch /pynvim\.api\.common\.NvimError: E1513:/ let l:caught = 1 endtry |