# HG changeset patch # User Bram Moolenaar # Date 1639689304 -3600 # Node ID c40554dfe03e3d7ebfceaefffb785ea5e3278433 # Parent ee6f635bd2b5b5fc4c4c0d717434cbf924f0f0b3 patch 8.2.3832: test fails because of changed error message Commit: https://github.com/vim/vim/commit/994a0a298bfbdd03e2eaae64268739d617080644 Author: Bram Moolenaar Date: Thu Dec 16 21:11:26 2021 +0000 patch 8.2.3832: test fails because of changed error message Problem: Test fails because of changed error message. Solution: Adjust the expected error message. diff --git a/src/testdir/test_vimscript.vim b/src/testdir/test_vimscript.vim --- a/src/testdir/test_vimscript.vim +++ b/src/testdir/test_vimscript.vim @@ -5572,8 +5572,8 @@ func Test_expr_eval_error_msg() call T(21, '(1 +) + CONT(21)', 'E15', "Invalid expression") call T(22, '1 2 + CONT(22)', 'E488', "Trailing characters: 2 +") call T(23, '(1 ? 2) + CONT(23)', 'E109', "Missing ':' after '?'") - call T(24, '("abc) + CONT(24)', 'E114', "Missing quote") - call T(25, "('abc) + CONT(25)", 'E115', "Missing quote") + call T(24, '("abc) + CONT(24)', 'E114', "Missing double quote") + call T(25, "('abc) + CONT(25)", 'E115', "Missing single quote") call T(26, '& + CONT(26)', 'E112', "Option name missing") call T(27, '&asdf + CONT(27)', 'E113', "Unknown option") diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3832, +/**/ 3831, /**/ 3830,