Mercurial > vim
changeset 29617:ee5acbac6abe v9.0.0149
patch 9.0.0149: test for fuzzy completion fails sometimes
Commit: https://github.com/vim/vim/commit/5ac4b1a24e3ba52698a0d24b22cdd2e1c7895417
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 6 10:28:19 2022 +0100
patch 9.0.0149: test for fuzzy completion fails sometimes
Problem: Test for fuzzy completion fails sometimes.
Solution: Use a more specific file name to minimize the chance of matching a
random directory name. (closes #10854)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 06 Aug 2022 11:30:06 +0200 |
parents | ff849d59173b |
children | ad8fa115e062 |
files | src/testdir/test_cmdline.vim src/version.c |
diffstat | 2 files changed, 12 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test_cmdline.vim +++ b/src/testdir/test_cmdline.vim @@ -2423,17 +2423,18 @@ endfunc " buffer name fuzzy completion func Test_fuzzy_completion_bufname() set wildoptions& - edit SomeFile.txt + " Use a long name to reduce the risk of matching a random directory name + edit SomeRandomFileWithLetters.txt enew - call feedkeys(":b SF\<Tab>\<C-B>\"\<CR>", 'tx') - call assert_equal('"b SF', @:) - call feedkeys(":b S*File.txt\<Tab>\<C-B>\"\<CR>", 'tx') - call assert_equal('"b SomeFile.txt', @:) + call feedkeys(":b SRFWL\<Tab>\<C-B>\"\<CR>", 'tx') + call assert_equal('"b SRFWL', @:) + call feedkeys(":b S*FileWithLetters.txt\<Tab>\<C-B>\"\<CR>", 'tx') + call assert_equal('"b SomeRandomFileWithLetters.txt', @:) set wildoptions=fuzzy - call feedkeys(":b SF\<Tab>\<C-B>\"\<CR>", 'tx') - call assert_equal('"b SomeFile.txt', @:) - call feedkeys(":b S*File.txt\<Tab>\<C-B>\"\<CR>", 'tx') - call assert_equal('"b S*File.txt', @:) + call feedkeys(":b SRFWL\<Tab>\<C-B>\"\<CR>", 'tx') + call assert_equal('"b SomeRandomFileWithLetters.txt', @:) + call feedkeys(":b S*FileWithLetters.txt\<Tab>\<C-B>\"\<CR>", 'tx') + call assert_equal('"b S*FileWithLetters.txt', @:) %bw! set wildoptions& endfunc