# HG changeset patch # User Bram Moolenaar # Date 1661881504 -7200 # Node ID 111d97d7b93a73db81fce2392ab8fb841d0dc27e # Parent 43430b4d48dbcbe86ee1c14929ac8a170c368ed6 patch 9.0.0334: test does not properly clean up Commit: https://github.com/vim/vim/commit/f240395fca63d4b330112a4b81e94b05b50de1aa Author: Dominique Pelle 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) diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim --- 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() diff --git a/src/version.c b/src/version.c --- 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,