diff src/testdir/test_arglist.vim @ 14836:516fc9fc4f1f v8.1.0430

patch 8.1.0430: Xargadd file left behind after running test commit https://github.com/vim/vim/commit/d339828b4b0dde662dc9ce65baf1cc098aec402c Author: Bram Moolenaar <Bram@vim.org> Date: Mon Sep 24 21:32:11 2018 +0200 patch 8.1.0430: Xargadd file left behind after running test Problem: Xargadd file left behind after running test. Solution: Delete the file. (Dominique Pelle)
author Christian Brabandt <cb@256bit.org>
date Mon, 24 Sep 2018 21:45:09 +0200
parents 0745e2cd4606
children 2c0bfa167468
line wrap: on
line diff
--- a/src/testdir/test_arglist.vim
+++ b/src/testdir/test_arglist.vim
@@ -94,6 +94,7 @@ func Test_argadd_empty_curbuf()
   call assert_equal('Xargadd', bufname('%'))
   call assert_equal(2, line('$'))
 
+  call delete('Xargadd')
   %argd
   bwipe!
 endfunc