From d9d44c8585dc68fee1a1461a6fe63f705025675b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 23 Jan 2021 16:46:31 +0100 Subject: [PATCH] Increase wxWebRequest tests timeout 10s seems to often be not long enough for the Travis/AppVeyor machines. --- tests/net/webrequest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/net/webrequest.cpp b/tests/net/webrequest.cpp index 207c053bcc..17a2fe26da 100644 --- a/tests/net/webrequest.cpp +++ b/tests/net/webrequest.cpp @@ -111,7 +111,7 @@ public: void RunLoopWithTimeout() { - StartOnce(10000); // Ensure that we exit the loop after 10s. + StartOnce(30000); // Ensure that we exit the loop after 30s. loop.Run(); Stop(); }