Skip to content

Commit

Permalink
patch 8.2.3832: test fails because of changed error message
Browse files Browse the repository at this point in the history
Problem:    Test fails because of changed error message.
Solution:   Adjust the expected error message.
  • Loading branch information
brammool committed Dec 16, 2021
1 parent 23e7236 commit 994a0a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/testdir/test_vimscript.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -749,6 +749,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3832,
/**/
3831,
/**/
Expand Down

0 comments on commit 994a0a2

Please sign in to comment.