changeset 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 1e91e26ceebf
children 190885deceac
files src/testdir/test_blockedit.vim src/version.c
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
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,
       }
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    609,
+/**/
     608,
 /**/
     607,