mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-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.
c212dd0a34
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
parent
5d691a4669
commit
ee944ef103
@ -185,9 +185,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
|
||||
|
Loading…
Reference in New Issue
Block a user