From 93ab9e6d7c914f3373f199c5b034dd8db3676401 Mon Sep 17 00:00:00 2001 From: jlewin Date: Tue, 30 Apr 2019 16:49:34 -0700 Subject: [PATCH] Reduce unnecessary delay at leveling conclusion - Issue MatterHackers/MCCentral#5404 Investigate and reduce automation test delays --- .../MatterControl.Tests/MatterControl/MatterControlUtilities.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/MatterControl.Tests/MatterControl/MatterControlUtilities.cs b/Tests/MatterControl.Tests/MatterControl/MatterControlUtilities.cs index 645fe0149..1204e6e14 100644 --- a/Tests/MatterControl.Tests/MatterControl/MatterControlUtilities.cs +++ b/Tests/MatterControl.Tests/MatterControl/MatterControlUtilities.cs @@ -1005,7 +1005,7 @@ namespace MatterHackers.MatterControl.Tests.Automation testRunner.ClickByName("Done Button"); testRunner.Delay(); - if (testRunner.NameExists("Already Loaded Button")) + if (testRunner.NameExists("Already Loaded Button", 0.2)) { testRunner.ClickByName("Already Loaded Button"); }