vim-patch:8.2.3096: temp files remain after running tests

Problem:    Temp files remain after running tests.
Solution:   Delete the right files. (Dominique Pellé, closes vim/vim#8509)

6c72fd51a8

Co-authored-by: Dominique Pelle <dominique.pelle@gmail.com>
This commit is contained in:
zeertzjq 2023-11-13 06:48:33 +08:00
parent 1cc2143710
commit 310d0f15c0
2 changed files with 2 additions and 2 deletions

View File

@ -1015,8 +1015,7 @@ func Test_debug_def_and_legacy_function()
call RunDbgCmd(buf, 'cont')
call StopVimInTerminal(buf)
call delete('Xtest1.vim')
call delete('Xtest2.vim')
call delete('XtestDebug.vim')
endfunc
func Test_debug_def_function()

View File

@ -329,6 +329,7 @@ func Test_closure_error()
let caught_932 = 1
endtry
call assert_equal(1, caught_932)
call delete('Xscript')
endfunc
" vim: shiftwidth=2 sts=2 expandtab