Skip to content

Commit c212dd0

Browse files
committed
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.
1 parent 83e7450 commit c212dd0

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/testdir/test_clientserver.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ func Test_client_server()
167167
call assert_fails('call remote_startserver([])', 'E730:')
168168
call assert_fails("let x = remote_peek([])", 'E730:')
169169
call assert_fails("let x = remote_read('vim10')",
170-
\ [has('unix') ? 'E573:.*vim10' : 'E277:.*vim10'])
170+
\ has('unix') ? ['E573:.*vim10'] : 'E277:')
171171
call assert_fails("call server2client('abc', 'xyz')",
172-
\ [has('unix') ? 'E573:.*abc' : 'E258:.*abc'])
172+
\ has('unix') ? ['E573:.*abc'] : 'E258:')
173173
endfunc
174174

175175
" Uncomment this line to get a debugging log

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,8 @@ static char *(features[]) =
754754

755755
static int included_patches[] =
756756
{ /* Add new patch number below this line */
757+
/**/
758+
1197,
757759
/**/
758760
1196,
759761
/**/

0 commit comments

Comments
 (0)