Skip to content

Commit

Permalink
patch 8.2.3024: execute() function test fails
Browse files Browse the repository at this point in the history
Problem:    execute() function test fails.
Solution:   Adjust test for different error.
  • Loading branch information
brammool committed Jun 20, 2021
1 parent ca81f0e commit 2fb1b89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/testdir/test_execute_func.vim
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func Test_execute_string()
if has('float')
call assert_fails('call execute(3.4)', 'E492:')
call assert_equal("\nx", execute("echo \"x\"", 3.4))
call CheckDefExecAndScriptFailure(['execute("echo \"x\"", 3.4)'], 'E806:')
call CheckDefExecAndScriptFailure2(['execute("echo \"x\"", 3.4)'], 'E1013: Argument 2: type mismatch, expected string but got float', 'E806:')
endif
endfunc

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

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

0 comments on commit 2fb1b89

Please sign in to comment.