summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_channel.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-19 16:22:44 +0100
committerBram Moolenaar <Bram@vim.org>2020-03-19 16:22:44 +0100
commit3696839ef1165804159e28f50cb6113acc3d519d (patch)
treea921ae3b993440d7e4558769d15bfbf8cdc2a89a /src/testdir/test_channel.vim
parentb68df220c5278365792b8f94d8d6f34d329b7746 (diff)
patch 8.2.0410: channel test fails too often on slow Macv8.2.0410
Problem: Channel test fails too often on slow Mac. Solution: Increase waiting time to 10 seconds.
Diffstat (limited to 'src/testdir/test_channel.vim')
-rw-r--r--src/testdir/test_channel.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index 2034aecfba..a820be548f 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -1160,7 +1160,8 @@ func Test_out_cb()
" Receive a json object split in pieces
let g:Ch_outobj = ''
call ch_sendraw(job, "echosplit [0, {\"one\": 1,| \"tw|o\": 2, \"three\": 3|}]\n")
- call WaitForAssert({-> assert_equal({'one': 1, 'two': 2, 'three': 3}, g:Ch_outobj)})
+ " For unknown reason this can be very slow on Mac.
+ call WaitForAssert({-> assert_equal({'one': 1, 'two': 2, 'three': 3}, g:Ch_outobj)}, 10000)
finally
call job_stop(job)
endtry