From b5fd22e771aa01f3057d449fcde1d1a9e9c45dae Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sat, 4 Jul 2026 07:17:49 +0800 Subject: [PATCH] vim-patch:9.2.0781: tests: Test_fuzzy_completion_bufname_fullpath() creates unnecessary dir (#40565) Problem: tests: Test_fuzzy_completion_bufname_fullpath() creates an unnecessary directory with the name of a file. Solution: Only create the parent directory of the file (zeertzjq). closes: vim/vim#20695 https://github.com/vim/vim/commit/98efa502798d09d828d5b6f48854145549ab060e --- test/old/testdir/test_cmdline.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/old/testdir/test_cmdline.vim b/test/old/testdir/test_cmdline.vim index 7399f99c5b..b3acb81a2e 100644 --- a/test/old/testdir/test_cmdline.vim +++ b/test/old/testdir/test_cmdline.vim @@ -3546,7 +3546,7 @@ endfunc func Test_fuzzy_completion_bufname_fullpath() CheckUnix set wildoptions& - call mkdir('Xcmd/Xstate/Xfile.js', 'pR') + call mkdir('Xcmd/Xstate', 'pR') edit Xcmd/Xstate/Xfile.js cd Xcmd/Xstate enew