summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_blockedit.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-27 17:47:12 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-27 17:47:12 +0100
commit66000ff9af8e3de93825ce7baa0c43727465eca5 (patch)
treedae7d8250af62d762d1857db830f26b03f20ffdf /src/testdir/test_blockedit.vim
parent9fbdbb814f4ad67a14979aba4a6a49800c2f1a99 (diff)
patch 9.0.0609: blockedit test fails because of wrong indentv9.0.0609
Problem: Blockedit test fails because of wrong indent. Solution: Adjust the expected text temporarily
Diffstat (limited to 'src/testdir/test_blockedit.vim')
-rw-r--r--src/testdir/test_blockedit.vim6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/testdir/test_blockedit.vim b/src/testdir/test_blockedit.vim
index e95520ff00..779c6472a6 100644
--- a/src/testdir/test_blockedit.vim
+++ b/src/testdir/test_blockedit.vim
@@ -28,9 +28,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,
}
@@ -47,9 +48,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,
}