aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-01-13 07:40:49 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-01-19 09:55:57 +0100
commit32c7971b2a6fca6fc96f250790ccd35f4a1df854 (patch)
treec3fdb67a1edf485daf5ca1f58225dd8f90320d74 /test
parente40946a5be2ce11156fc7494ec81040d3cde4809 (diff)
downloadrneovim-32c7971b2a6fca6fc96f250790ccd35f4a1df854.tar.gz
rneovim-32c7971b2a6fca6fc96f250790ccd35f4a1df854.tar.bz2
rneovim-32c7971b2a6fca6fc96f250790ccd35f4a1df854.zip
win: fix warnings
Diffstat (limited to 'test')
-rw-r--r--test/functional/core/job_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua
index 653f76f372..9ecfcd3df9 100644
--- a/test/functional/core/job_spec.lua
+++ b/test/functional/core/job_spec.lua
@@ -341,7 +341,7 @@ describe('jobs', function()
function! s:OnEvent(id, data, event) dict
let g:job_result = get(self, 'user')
endfunction
- let s:job = jobstart('echo', {
+ let s:job = jobstart('echo "foo"', {
\ 'on_stdout': 's:OnEvent',
\ 'on_stderr': 's:OnEvent',
\ 'on_exit': 's:OnEvent',