From d7306e72f3169f5c289028f135790205931816ab Mon Sep 17 00:00:00 2001 From: BDisp Date: Mon, 28 Jul 2025 15:00:23 +0100 Subject: [PATCH] Increasing time to abort --- Tests/IntegrationTests/UICatalog/ScenarioTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/IntegrationTests/UICatalog/ScenarioTests.cs b/Tests/IntegrationTests/UICatalog/ScenarioTests.cs index ebb606213..a12285e55 100644 --- a/Tests/IntegrationTests/UICatalog/ScenarioTests.cs +++ b/Tests/IntegrationTests/UICatalog/ScenarioTests.cs @@ -42,7 +42,7 @@ public class ScenarioTests : TestsAllViews _output.WriteLine ($"Running Scenario '{scenarioType}'"); var scenario = Activator.CreateInstance (scenarioType) as Scenario; - uint abortTime = 2000; + uint abortTime = 3000; // Some scenarios may take a while to quit, so we give them 3 seconds object? timeout = null; var initialized = false; var shutdownGracefully = false;