diff src/testdir/test_cmdline.vim @ 10007:a4d4ee212dab v7.4.2276

commit https://github.com/vim/vim/commit/1773ddfdcd106fa3bbf479c9b62ccde03c2a86ba Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 28 13:38:54 2016 +0200 patch 7.4.2276 Problem: Command line test fails on Windows when run twice. Solution: Wipe the buffer so that the directory can be deleted.
author Christian Brabandt <cb@256bit.org>
date Sun, 28 Aug 2016 13:45:05 +0200
parents ff0b4216f026
children 6d8b2da002e9
line wrap: on
line diff
--- a/src/testdir/test_cmdline.vim
+++ b/src/testdir/test_cmdline.vim
@@ -186,5 +186,6 @@ func Test_expand_star_star()
   call writefile(['asdfasdf'], 'a/b/fileXname')
   call feedkeys(":find **/fileXname\<Tab>\<CR>", 'xt')
   call assert_equal('find a/b/fileXname', getreg(':'))
+  bwipe!
   call delete('a', 'rf')
 endfunc