From: Dominique Pelle Date: Tue, 30 Aug 2022 17:42:16 +0000 (+0100) Subject: patch 9.0.0334: test does not properly clean up X-Git-Tag: v9.0.0334 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f240395fca63d4b330112a4b81e94b05b50de1aa;p=vim 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 #11010) --- diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim index 974f33603..0fa74df25 100644 --- 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 index 265da7569..dd600732a 100644 --- a/src/version.c +++ b/src/version.c @@ -707,6 +707,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 334, /**/ 333, /**/