aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-05-05 22:56:57 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-05-05 22:57:47 -0400
commit5c6018ba2f6b447a2433a336aacfe75e57e307bc (patch)
tree00eca82b7fbd0f88c3fa37e89ed47814cea9897d /src
parent7d2e76e3330ce341f8f5a2873477bd62a6131525 (diff)
downloadrneovim-5c6018ba2f6b447a2433a336aacfe75e57e307bc.tar.gz
rneovim-5c6018ba2f6b447a2433a336aacfe75e57e307bc.tar.bz2
rneovim-5c6018ba2f6b447a2433a336aacfe75e57e307bc.zip
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) https://github.com/vim/vim/commit/5f8ed7408aaf477215bcfde3e487e24b9e6ad870
Diffstat (limited to 'src')
-rw-r--r--src/nvim/testdir/test_mksession.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_mksession.vim b/src/nvim/testdir/test_mksession.vim
index d7cb4e743c..4e46dbac16 100644
--- a/src/nvim/testdir/test_mksession.vim
+++ b/src/nvim/testdir/test_mksession.vim
@@ -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