Simplify property name

This commit is contained in:
John Lewin 2017-08-16 05:55:23 -07:00
parent b781751331
commit 5e0b016e89
10 changed files with 70 additions and 70 deletions

View file

@ -141,9 +141,9 @@ namespace MatterHackers.MatterControl.Tests.Automation
var printer = ApplicationController.Instance.Printer;
testRunner.Delay(() => printer.BedPlate.ActiveLayerIndex + 1 == indexToWaitFor, 30, 500);
testRunner.Delay(() => printer.Bed.ActiveLayerIndex + 1 == indexToWaitFor, 30, 500);
Assert.AreEqual(indexToWaitFor, printer.BedPlate.ActiveLayerIndex + 1);
Assert.AreEqual(indexToWaitFor, printer.Bed.ActiveLayerIndex + 1);
testRunner.ClickByName("Resume Button");
testRunner.Delay(.1);
}