From 3a6a8ca0f2ae193a4fe3f58479dc141e39b87716 Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Wed, 24 Jul 2019 08:39:10 +0100 Subject: [PATCH] Increase default timeout --- tests/lib/plugin/shared.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/plugin/shared.vim b/tests/lib/plugin/shared.vim index 7660c38c9..b6f020565 100644 --- a/tests/lib/plugin/shared.vim +++ b/tests/lib/plugin/shared.vim @@ -126,7 +126,7 @@ endfunc " When running into the timeout an exception is thrown, thus the function does " not return. func WaitFor(expr, ...) - let timeout = get(a:000, 0, 5000) + let timeout = get(a:000, 0, 10000) let slept = s:WaitForCommon(a:expr, v:null, timeout) if slept < 0 throw 'WaitFor() timed out after ' . timeout . ' msec'