# HG changeset patch # User Bram Moolenaar # Date 1620062103 -7200 # Node ID b39b56c0debca5392c87ee38fb6e606027d984ed # Parent 508b3b164d2a788624883b1779421722f3eb8270 patch 8.2.2827: test file was not deleted Commit: https://github.com/vim/vim/commit/5f8ed7408aaf477215bcfde3e487e24b9e6ad870 Author: Dominique Pelle Date: Mon May 3 19:08:37 2021 +0200 patch 8.2.2827: test file was not deleted Problem: Test file was not deleted. Solution: Uncomment the delete() call. (Dominique Pell?, closes https://github.com/vim/vim/issues/8172) diff --git a/src/testdir/test_mksession.vim b/src/testdir/test_mksession.vim --- a/src/testdir/test_mksession.vim +++ b/src/testdir/test_mksession.vim @@ -187,9 +187,9 @@ func Test_mksession_zero_winheight() mksession! Xtest_mks_zero set winminheight& let text = readfile('Xtest_mks_zero')->join() - "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 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2827, +/**/ 2826, /**/ 2825,