From 630e0592b77bda1106f747089fd1b9bc2f5ce046 Mon Sep 17 00:00:00 2001 From: Lewis Russell Date: Fri, 4 Sep 2026 17:51:23 +0100 Subject: [PATCH] test(lua): avoid async task completion flake #41702 Allow enough time for the timer and scheduled continuation to run on Windows. fixes #41699 AI-assisted --- test/functional/lua/async_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/lua/async_spec.lua b/test/functional/lua/async_spec.lua index 146f467fe5..4a2c56348a 100644 --- a/test/functional/lua/async_spec.lua +++ b/test/functional/lua/async_spec.lua @@ -288,7 +288,7 @@ describe('async', function() return nil, 1 end) - local r1, r2 = task:wait(10) + local r1, r2 = task:wait(100) eq(r1, nil) eq(r2, 1) end)