summaryrefslogtreecommitdiff
path: root/src/testdir/test_channel.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-03-12 15:39:40 +0100
committerBram Moolenaar <Bram@vim.org>2016-03-12 15:39:40 +0100
commit1adda3403d80e96446248a92ceafee036053765c (patch)
tree2246af28b7717bf724290ea59169c26978e803d8 /src/testdir/test_channel.vim
parent8950a563b306ce76f259573d91c2ddccdf52e32e (diff)
downloadvim-git-1adda3403d80e96446248a92ceafee036053765c.tar.gz
patch 7.4.1542v7.4.1542
Problem: job_start() with a list is not tested. Solution: Call job_start() with a list.
Diffstat (limited to 'src/testdir/test_channel.vim')
-rw-r--r--src/testdir/test_channel.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index ed62e6646..c9658802d 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -492,7 +492,7 @@ func Test_nl_pipe()
return
endif
call ch_log('Test_nl_pipe()')
- let job = job_start(s:python . " test_channel_pipe.py")
+ let job = job_start([s:python, "test_channel_pipe.py"])
call assert_equal("run", job_status(job))
try
let handle = job_getchannel(job)