Skip to content

Commit

Permalink
patch 8.2.2858: 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 May 16, 2021
1 parent ff65288 commit 6b02b38
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_ex_mode.vim
Expand Up @@ -154,9 +154,9 @@ func Test_Ex_echo_backslash()
let bsl = '\\\\'
let bsl2 = '\\\'
call assert_fails('call feedkeys("Qecho " .. bsl .. "\nvisual\n", "xt")',
\ "E15: Invalid expression: \\\\")
\ 'E15: Invalid expression: "\\"')
call assert_fails('call feedkeys("Qecho " .. bsl2 .. "\nm\nvisual\n", "xt")',
\ "E15: Invalid expression: \\\nm")
\ "E15: Invalid expression: \"\\\nm\"")
endfunc

func Test_ex_mode_errors()
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

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

0 comments on commit 6b02b38

Please sign in to comment.