changeset 27883:9c04fbcaacbc v8.2.4467

patch 8.2.4467: running filetype test leaves file behind Commit: https://github.com/vim/vim/commit/0e71b7d4ce3e1210150ce772e1af6956057a71ed Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 25 17:45:04 2022 +0000 patch 8.2.4467: running filetype test leaves file behind Problem: Running filetype test leaves file behind. Solution: Delete the file.
author Bram Moolenaar <Bram@vim.org>
date Fri, 25 Feb 2022 19:00:04 +0100
parents ee0155d5dfd8
children 6061cd922df1
files src/testdir/test_filetype.vim
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_filetype.vim
+++ b/src/testdir/test_filetype.vim
@@ -862,6 +862,7 @@ func Test_d_file()
   call assert_equal('d', &filetype)
   bwipe!
 
+  " clean up
   filetype off
   call delete('Xfile.d')
 endfunc