diff src/testdir/test_blockedit.vim @ 30548:84ea6d876d43 v9.0.0609

patch 9.0.0609: blockedit test fails because of wrong indent Commit: https://github.com/vim/vim/commit/66000ff9af8e3de93825ce7baa0c43727465eca5 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 27 17:47:12 2022 +0100 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
author Bram Moolenaar <Bram@vim.org>
date Tue, 27 Sep 2022 19:00:04 +0200
parents 74e706afae3f
children eaa79e688fb8
line wrap: on
line diff
--- 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,
       }