vim-patch:8.2.2827: test file was not deleted

Problem:    Test file was not deleted.
Solution:   Uncomment the delete() call. (Dominique Pellé, closes vim/vim#8172)
5f8ed7408a
This commit is contained in:
Jan Edmund Lazo 2021-05-05 22:56:57 -04:00
parent 7d2e76e333
commit 5c6018ba2f
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15

View File

@ -158,9 +158,9 @@ func Test_mksession_zero_winheight()
set winminheight&
" let text = readfile('Xtest_mks_zero')->join()
let text = join(readfile('Xtest_mks_zero'))
"call delete('Xtest_mks_zero')
call delete('Xtest_mks_zero')
close
" check there is no devide by zero
" check there is no divide by zero
call assert_notmatch('/ 0[^0-9]', text)
endfunc