changeset 29992:111d97d7b93a v9.0.0334

patch 9.0.0334: test does not properly clean up Commit: https://github.com/vim/vim/commit/f240395fca63d4b330112a4b81e94b05b50de1aa Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Tue Aug 30 18:42:16 2022 +0100 patch 9.0.0334: test does not properly clean up Problem: Test does not properly clean up. Solution: Fix typo in argument of delete(). (Dominique Pell?, closes https://github.com/vim/vim/issues/11010)
author Bram Moolenaar <Bram@vim.org>
date Tue, 30 Aug 2022 19:45:04 +0200
parents 43430b4d48db
children 8dd1900432a0
files src/testdir/test_vim9_func.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_vim9_func.vim
+++ b/src/testdir/test_vim9_func.vim
@@ -190,7 +190,7 @@ def Test_autoload_name_mismatch()
   v9.CheckScriptFailure(lines, 'E117:', 1)
 
   &rtp = save_rtp
-  delete('Xnamdir', 'rf')
+  delete('Xnamedir', 'rf')
 enddef
 
 def Test_autoload_names()
--- a/src/version.c
+++ b/src/version.c
@@ -708,6 +708,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    334,
+/**/
     333,
 /**/
     332,