diff src/testdir/test_eval_stuff.vim @ 20085:f5274405ae64 v8.2.0598

patch 8.2.0598: test_eval_stuff fails in normal terminal Commit: https://github.com/vim/vim/commit/61fbb3371ee1f6a02706f52fbe064608e159be7c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 18 23:20:37 2020 +0200 patch 8.2.0598: test_eval_stuff fails in normal terminal Problem: Test_eval_stuff fails in normal terminal. Solution: Close the new window.
author Bram Moolenaar <Bram@vim.org>
date Sat, 18 Apr 2020 23:30:04 +0200
parents 0da696bd7352
children e82996ad131f
line wrap: on
line diff
--- a/src/testdir/test_eval_stuff.vim
+++ b/src/testdir/test_eval_stuff.vim
@@ -258,9 +258,9 @@ 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()
   call setreg('a', 'abcA', 'c')
   call Assert_reg('a', 'v', "abcA", "['abcA']", "abcA", "['abcA']")
@@ -351,8 +351,5 @@ func Test_setreg_basic()
   call Assert_regput('I', ['==', '=abcI='])
 endfunc
 
-func Test_setreg_append_NL()
-endfunc
-
 
 " vim: shiftwidth=2 sts=2 expandtab