diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-12-05 09:49:38 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-12-05 09:49:44 +0800 |
commit | ee944ef10387f70bdf0baae10dfdcbe7e19ab035 (patch) | |
tree | 485a449b386f81db45db870c4212c2ac1daf3988 /src | |
parent | 5d691a4669dd90a0e29dae699ccd845aca3ef667 (diff) | |
download | rneovim-ee944ef10387f70bdf0baae10dfdcbe7e19ab035.tar.gz rneovim-ee944ef10387f70bdf0baae10dfdcbe7e19ab035.tar.bz2 rneovim-ee944ef10387f70bdf0baae10dfdcbe7e19ab035.zip |
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.
https://github.com/vim/vim/commit/c212dd0a346d57f62013094ea6861eb28e33023c
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_clientserver.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_clientserver.vim b/src/nvim/testdir/test_clientserver.vim index fdecda1800..5a88c7fed1 100644 --- a/src/nvim/testdir/test_clientserver.vim +++ b/src/nvim/testdir/test_clientserver.vim @@ -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 |