diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2021-09-20 14:49:17 +0100 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-09-22 23:53:13 +0100 |
commit | 74ddd14241af45b4b07028006db9099780b9fe6c (patch) | |
tree | f0e9c4e756ecad0bfb7a6930bf8b15ec95cf29da | |
parent | 3b2be8f3dea55c37fe7203464dff76241d6373da (diff) | |
download | rneovim-74ddd14241af45b4b07028006db9099780b9fe6c.tar.gz rneovim-74ddd14241af45b4b07028006db9099780b9fe6c.tar.bz2 rneovim-74ddd14241af45b4b07028006db9099780b9fe6c.zip |
vim-patch:8.2.0598: test_eval_stuff fails in normal terminal
Problem: Test_eval_stuff fails in normal terminal.
Solution: Close the new window.
https://github.com/vim/vim/commit/61fbb3371ee1f6a02706f52fbe064608e159be7c
Required for v8.2.0598 to work.
-rw-r--r-- | src/nvim/testdir/test_eval_stuff.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_eval_stuff.vim b/src/nvim/testdir/test_eval_stuff.vim index 48e365909a..aaf6bdc63e 100644 --- a/src/nvim/testdir/test_eval_stuff.vim +++ b/src/nvim/testdir/test_eval_stuff.vim @@ -197,6 +197,7 @@ func Assert_regput(name, result) new execute "silent normal! o==\n==\e\"" . a:name . "P" call assert_equal(a:result, getline(2, line('$'))) + bwipe! endfunc func Test_setreg_basic() @@ -300,9 +301,6 @@ func Test_setreg_basic() call assert_fails('call setreg(1, ["", "", [], ""])', 'E730:') endfunc -func Test_setreg_append_NL() -endfunc - func Test_curly_assignment() let s:svar = 'svar' let g:gvar = 'gvar' |