diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-13 13:46:34 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-11-13 13:50:43 +0800 |
commit | 3d9593523d0b3a4280f8f661818a7da0106556d4 (patch) | |
tree | 0a407b1c903ce93889cc50fca3881181a025e0b9 | |
parent | 0ff3187fb864040adf6251117f89dd995643d6e8 (diff) | |
download | rneovim-3d9593523d0b3a4280f8f661818a7da0106556d4.tar.gz rneovim-3d9593523d0b3a4280f8f661818a7da0106556d4.tar.bz2 rneovim-3d9593523d0b3a4280f8f661818a7da0106556d4.zip |
vim-patch:8.2.2112: running tests may leave some files behind
Problem: Running tests may leave some files behind.
Solution: Delete the right files. Fix a few typos. (Dominique Pellé,
closes vim/vim#7436
https://github.com/vim/vim/commit/ac665c24c97582a64ae2d151a812eca92c1ff2d6
Co-authored-by: Bram Moolenaar <Bram@vim.org>
-rw-r--r-- | test/old/testdir/test_mksession.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/old/testdir/test_mksession.vim b/test/old/testdir/test_mksession.vim index 8bb33bb023..86759f026c 100644 --- a/test/old/testdir/test_mksession.vim +++ b/test/old/testdir/test_mksession.vim @@ -424,7 +424,7 @@ func Test_mksession_terminal_no_restore_cmdarg() let term_cmd = '' for line in lines if line =~ '^terminal' - call assert_report('session must not restore teminal') + call assert_report('session must not restore terminal') endif endfor @@ -439,7 +439,7 @@ func Test_mksession_terminal_no_restore_funcarg() let term_cmd = '' for line in lines if line =~ '^terminal' - call assert_report('session must not restore teminal') + call assert_report('session must not restore terminal') endif endfor @@ -455,7 +455,7 @@ func Test_mksession_terminal_no_restore_func() let term_cmd = '' for line in lines if line =~ '^terminal' - call assert_report('session must not restore teminal') + call assert_report('session must not restore terminal') endif endfor @@ -471,7 +471,7 @@ func Test_mksession_terminal_no_ssop() let term_cmd = '' for line in lines if line =~ '^terminal' - call assert_report('session must not restore teminal') + call assert_report('session must not restore terminal') endif endfor |