diff src/testdir/test_channel.vim @ 8013:dfae8bce5920 v7.4.1301

commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 10 23:28:21 2016 +0100 patch 7.4.1301 Problem: Missing options in ch_open(). Solution: Add s:chopt like in the other calls. (Ozaki Kiichi)
author Christian Brabandt <cb@256bit.org>
date Wed, 10 Feb 2016 23:30:04 +0100
parents b2cfa3416ba0
children c59a65524084
line wrap: on
line diff
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -161,7 +161,7 @@ endfunc
 
 " Test that we can open two channels.
 func s:two_channels(port)
-  let handle = ch_open('localhost:' . a:port)
+  let handle = ch_open('localhost:' . a:port, s:chopt)
   if handle < 0
     call assert_false(1, "Can't open channel")
     return