From dd8ebea01e26445d540272147f317b6f0b3cfff4 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Thu, 4 May 2023 12:28:51 +0800 Subject: [PATCH] vim-patch:9.0.0609: blockedit test fails because of wrong indent Problem: Blockedit test fails because of wrong indent. Solution: Adjust the expected text temporarily https://github.com/vim/vim/commit/66000ff9af8e3de93825ce7baa0c43727465eca5 Co-authored-by: Bram Moolenaar --- test/old/testdir/test_blockedit.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/old/testdir/test_blockedit.vim b/test/old/testdir/test_blockedit.vim index 7b56b1554f..2d58f0acf9 100644 --- a/test/old/testdir/test_blockedit.vim +++ b/test/old/testdir/test_blockedit.vim @@ -29,9 +29,10 @@ func Test_blockinsert_autoindent() setlocal sw=2 et ft=vim setlocal indentkeys+=: exe "norm! 2Gf)\2jA: asdf\" + " FIXME: what do we really expect? let expected =<< trim END var d = { - a: (): asdf => 0, + a: (): asdf => 0, b: (): asdf => 0, c: (): asdf => 0, } @@ -48,9 +49,10 @@ func Test_blockinsert_autoindent() call setline(1, lines) setlocal sw=8 noet exe "norm! 2Gf)\2jA: asdf\" + " FIXME: what do we really expect? let expected =<< trim END var d = { - a: (): asdf => 0, + a: (): asdf => 0, b: (): asdf => 0, c: (): asdf => 0, }