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
index 0069628..8c889fd 100644
--- a/src/testdir/test_startup.vim
+++ b/src/testdir/test_startup.vim
@@ -299,7 +299,7 @@
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 @@
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 @@
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