diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-05 10:04:12 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-09-05 22:05:05 +0200 |
commit | 51d42917f0a225d6e40cb4746395b3a934d71be2 (patch) | |
tree | 466342d3212eebeb7aeed9780175935510cbf263 | |
parent | 55a721512b695db47c6c0a792b767a1c850b01fc (diff) | |
download | rneovim-51d42917f0a225d6e40cb4746395b3a934d71be2.tar.gz rneovim-51d42917f0a225d6e40cb4746395b3a934d71be2.tar.bz2 rneovim-51d42917f0a225d6e40cb4746395b3a934d71be2.zip |
test/win: job_spec: increase jobwait() timeout
powershell is slow, and this timeout is "worst case" so it doesn't make
the tests more costly, only avoids a false-positive.
close #8958
-rw-r--r-- | test/functional/core/job_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua index feb9c9aeaa..f8488ca7a3 100644 --- a/test/functional/core/job_spec.lua +++ b/test/functional/core/job_spec.lua @@ -663,7 +663,7 @@ describe('jobs', function() call rpcnotify(g:channel, 'wait', jobwait([ \ jobstart('exit 4'), \ jobstart((has('win32') ? 'Start-Sleep 10' : 'sleep 10').'; exit 5'), - \ ], has('win32') ? 3000 : 100)) + \ ], has('win32') ? 6000 : 100)) ]]) eq({'notification', 'wait', {{4, -1}}}, next_msg()) end) |