diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-04 12:28:51 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-05-04 12:28:57 +0800 |
commit | dd8ebea01e26445d540272147f317b6f0b3cfff4 (patch) | |
tree | 27f55b07e39ef77135980e6029f80ce334ad0664 | |
parent | 143a1783328074a5167d9619aff2a8ee9c2ca481 (diff) | |
download | rneovim-dd8ebea01e26445d540272147f317b6f0b3cfff4.tar.gz rneovim-dd8ebea01e26445d540272147f317b6f0b3cfff4.tar.bz2 rneovim-dd8ebea01e26445d540272147f317b6f0b3cfff4.zip |
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 <Bram@vim.org>
-rw-r--r-- | test/old/testdir/test_blockedit.vim | 6 |
1 files 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)\<c-v>2jA: asdf\<esc>" + " 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)\<c-v>2jA: asdf\<esc>" + " FIXME: what do we really expect? let expected =<< trim END var d = { - a: (): asdf => 0, + a: (): asdf => 0, b: (): asdf => 0, c: (): asdf => 0, } |