0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 8.2.1197: clientserver test still fails on MS-Windows

Problem:    Clientserver test still fails on MS-Windows.
Solution:   Expect a different error message.
This commit is contained in:
Bram Moolenaar 2020-07-12 20:49:29 +02:00
parent 83e7450053
commit c212dd0a34
2 changed files with 4 additions and 2 deletions

View File

@ -167,9 +167,9 @@ func Test_client_server()
call assert_fails('call remote_startserver([])', 'E730:')
call assert_fails("let x = remote_peek([])", 'E730:')
call assert_fails("let x = remote_read('vim10')",
\ [has('unix') ? 'E573:.*vim10' : 'E277:.*vim10'])
\ has('unix') ? ['E573:.*vim10'] : 'E277:')
call assert_fails("call server2client('abc', 'xyz')",
\ [has('unix') ? 'E573:.*abc' : 'E258:.*abc'])
\ has('unix') ? ['E573:.*abc'] : 'E258:')
endfunc
" Uncomment this line to get a debugging log

View File

@ -754,6 +754,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1197,
/**/
1196,
/**/