diff --git a/PrinterCommunication/Io/PrintLevelingStream.cs b/PrinterCommunication/Io/PrintLevelingStream.cs index 1a8e03f94..715d60716 100644 --- a/PrinterCommunication/Io/PrintLevelingStream.cs +++ b/PrinterCommunication/Io/PrintLevelingStream.cs @@ -50,7 +50,7 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io public PrinterMove LastDestination { get { return lastDestination; } } - public static bool Enabled { get; set; } + public static bool Enabled { get; set; } = true; public override string ReadLine() { diff --git a/Tests/MatterControl.AutomationTests/PrintingTests.cs b/Tests/MatterControl.AutomationTests/PrintingTests.cs index cff15e410..df389acda 100644 --- a/Tests/MatterControl.AutomationTests/PrintingTests.cs +++ b/Tests/MatterControl.AutomationTests/PrintingTests.cs @@ -105,7 +105,7 @@ namespace MatterHackers.MatterControl.Tests.Automation // assert the leveling is working testRunner.WaitForName("Resume Button", 30); - Assert.Greater(emulator.XPosition, 5); + Assert.Greater(emulator.ZPosition, 5); testRunner.ClickByName("Cancel Print Button", 1); }