# HG changeset patch # User Bram Moolenaar # Date 1594770304 -7200 # Node ID 0b29fe5943aeb81044b1b5a82fb24e599e302cf4 # Parent e22f29253da33dabd558fec55e63be04ae05c6b9 patch 8.2.1216: startup test fails Commit: https://github.com/vim/vim/commit/b6e4e4c6f7b4f7eadcc4c2397bfa57e0734e005f Author: Bram Moolenaar Date: Wed Jul 15 01:37:36 2020 +0200 patch 8.2.1216: startup test fails Problem: Startup test fails. Solution: Adjust expected values for deleted lines. diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim --- a/src/testdir/test_startup.vim +++ b/src/testdir/test_startup.vim @@ -299,7 +299,7 @@ func Test_q_arg() if RunVim([], after, '-q') let lines = readfile('Xtestout') call assert_equal(['errors.err', - \ '[0, 208, 5, 0]', + \ '[0, 208, 1, 0]', \ source_file . "|208 col 5| error: expected ';' before '}' token"], \ lines) endif @@ -311,7 +311,7 @@ func Test_q_arg() if RunVim([], after, '-q Xerrors') let lines = readfile('Xtestout') call assert_equal(['Xerrors', - \ '[0, 208, 5, 0]', + \ '[0, 208, 1, 0]', \ source_file . "|208 col 5| error: expected ';' before '}' token"], \ lines) endif @@ -321,7 +321,7 @@ func Test_q_arg() if RunVim([], after, '-qXerrors') let lines = readfile('Xtestout') call assert_equal(['Xerrors', - \ '[0, 208, 5, 0]', + \ '[0, 208, 1, 0]', \ source_file . "|208 col 5| error: expected ';' before '}' token"], \ lines) endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1216, +/**/ 1215, /**/ 1214,