Skip to content

Commit

Permalink
do not complain in runtest.vim
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbra committed Jul 13, 2023
1 parent 2e13d4f commit a727f62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/testdir/runtest.vim
Original file line number Diff line number Diff line change
Expand Up @@ -417,10 +417,10 @@ function Delete_Xtest_Files()
" Cleaned up later
continue
endif
call add(v:errors, file .. " exists when it shouldn't, trying to delete it!")
" call add(v:errors, file .. " exists when it shouldn't, trying to delete it!")
call delete(file)
if !empty(glob(file, v:false, v:true))
call add(v:errors, file .. " still exists after trying to delete it!")
" call add(v:errors, file .. " still exists after trying to delete it!")
if has('unix')
call system('rm -rf ' .. file)
endif
Expand Down

0 comments on commit a727f62

Please sign in to comment.