neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit a261f602a067c7cb4de39fa6330053c08dcfd5e5
parent cd7d3cc041d1ae067cd45deab71ed6410ffd0ab8
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Thu,  6 Mar 2025 07:39:15 +0800

vim-patch:9.1.1174: tests: Test_complete_cmdline() may fail (#32743)

Problem:  tests: when the file 'TestCommand?Test' exists,
          'Test_complete_cmdline()' will fail when writing the file. And
          there's no related cleaning operation for this kind of file
          before the test run.
Solution: modify `write` to `write!` to override (Jim Zhou).

closes: vim/vim#16799

https://github.com/vim/vim/commit/f7087cbec7ec1d32465c2460f2665725c8d3a06a

Co-authored-by: Jim Zhou <jimzhouzzy@gmail.com>
Diffstat:
Mtest/old/testdir/test_ins_complete.vim | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/old/testdir/test_ins_complete.vim b/test/old/testdir/test_ins_complete.vim @@ -1208,8 +1208,8 @@ func Test_complete_cmdline() call assert_equal('abcxyz(', getline(3)) com! -buffer TestCommand1 echo 'TestCommand1' com! -buffer TestCommand2 echo 'TestCommand2' - write TestCommand1Test - write TestCommand2Test + write! TestCommand1Test + write! TestCommand2Test " Test repeating <CTRL-X> <CTRL-V> and switching to another CTRL-X mode exe "normal oT\<C-X>\<C-V>\<C-X>\<C-V>\<C-X>\<C-F>\<Esc>" call assert_equal('TestCommand2Test', getline(4))