Fixing leveling tests to not look for removed select material screen

This commit is contained in:
Lars Brubaker 2018-10-30 16:06:01 -07:00
parent af8d5d5402
commit 54855706ae
2 changed files with 2 additions and 4 deletions

View file

@ -62,8 +62,8 @@ namespace MatterHackers.MatterControl.Tests.Automation
testRunner.ClickByName("Yes Button");
// make sure it is showing the correct button
Assert.IsTrue(!testRunner.WaitForName("PrintPopupMenu"), "Start Print should be visible after reset to Defaults");
Assert.IsTrue(testRunner.WaitForName("Finish Setup Button"), "Finish Setup should not be visible after reset to Defaults");
Assert.IsTrue(testRunner.WaitForName("Finish Setup Button"), "Finish Setup should be visible after reset to Defaults");
Assert.IsTrue(!testRunner.WaitForName("PrintPopupMenu"), "Start Print should not be visible after reset to Defaults");
}
return Task.CompletedTask;