From 74ddd14241af45b4b07028006db9099780b9fe6c Mon Sep 17 00:00:00 2001 From: Sean Dewar Date: Mon, 20 Sep 2021 14:49:17 +0100 Subject: 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. --- src/nvim/testdir/test_eval_stuff.vim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') 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' -- cgit