From e23766ab91ef99a4a4185b9aaa1ca67aa5373cbd Mon Sep 17 00:00:00 2001 From: John Lewin Date: Wed, 18 Oct 2017 09:24:46 -0700 Subject: [PATCH] Discard unused out param --- Tests/MatterControl.AutomationTests/LibraryActionTests.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Tests/MatterControl.AutomationTests/LibraryActionTests.cs b/Tests/MatterControl.AutomationTests/LibraryActionTests.cs index c8ed9c0e0..7021a24df 100644 --- a/Tests/MatterControl.AutomationTests/LibraryActionTests.cs +++ b/Tests/MatterControl.AutomationTests/LibraryActionTests.cs @@ -152,11 +152,9 @@ namespace MatterHackers.MatterControl.Tests.Automation { testRunner.CloseSignInAndPrinterSelect(); - SystemWindow systemWindow; - testRunner.ClickByName("Queue... Menu"); - var exportButton = testRunner.GetWidgetByName(" Export to Zip Menu Item", out systemWindow, 5); + var exportButton = testRunner.GetWidgetByName(" Export to Zip Menu Item", out _, 5); Assert.IsNotNull(exportButton, "Export button should exist"); Assert.IsTrue(exportButton.Enabled, "Export button should be enabled");