From df6a0827fbabbf7501bf6f110a5fd3c3463eb6ac Mon Sep 17 00:00:00 2001 From: Evgeni Chasnovski Date: Thu, 16 Apr 2026 17:11:34 +0300 Subject: [PATCH] test(pack): increase retry timeout for startup test #39125 Problem: Unreliable test on Windows which sometimes fails with too many failed retries. Solution: Increase timeout in hopes that it will be enough to make it pass more frequently. This should not affect fast and already working platforms. --- test/functional/plugin/pack_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/plugin/pack_spec.lua b/test/functional/plugin/pack_spec.lua index 0d7fb298ce..377bd6fbf8 100644 --- a/test/functional/plugin/pack_spec.lua +++ b/test/functional/plugin/pack_spec.lua @@ -879,7 +879,7 @@ describe('vim.pack', function() local function assert_works() -- Should auto-install but wait before executing code after it n.clear({ args_rm = { '-u' } }) - t.retry(nil, 2000, function() + t.retry(nil, 5000, function() eq(true, exec_lua('return _G.done')) end) assert_loaded()