Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Service.Test/HeightStructuresCalculationServiceTest.cs =================================================================== diff -u -rd4213a7531c7effcd982ca96e799c2f8231b7627 -r80e51fdd446be6524d4f3bcc4175e8d3ae9c86ff --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Service.Test/HeightStructuresCalculationServiceTest.cs (.../HeightStructuresCalculationServiceTest.cs) (revision d4213a7531c7effcd982ca96e799c2f8231b7627) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Service.Test/HeightStructuresCalculationServiceTest.cs (.../HeightStructuresCalculationServiceTest.cs) (revision 80e51fdd446be6524d4f3bcc4175e8d3ae9c86ff) @@ -784,7 +784,7 @@ using (new HydraRingCalculatorFactoryConfig()) { var calculator = ((TestHydraRingCalculatorFactory) HydraRingCalculatorFactory.Instance).StructuresOvertoppingCalculator; - calculator.LastErrorContent = "An error occurred"; + calculator.LastErrorFileContent = "An error occurred"; calculator.EndInFailure = true; var exceptionThrown = false; @@ -910,7 +910,7 @@ { var calculator = ((TestHydraRingCalculatorFactory) HydraRingCalculatorFactory.Instance).StructuresOvertoppingCalculator; calculator.EndInFailure = false; - calculator.LastErrorContent = "An error occurred"; + calculator.LastErrorFileContent = "An error occurred"; var exceptionThrown = false; var exceptionMessage = string.Empty; @@ -944,7 +944,7 @@ StringAssert.StartsWith(string.Format("Berekening van '{0}' beƫindigd om: ", calculation.Name), msgs[3]); }); Assert.IsTrue(exceptionThrown); - Assert.AreEqual(calculator.LastErrorContent, exceptionMessage); + Assert.AreEqual(calculator.LastErrorFileContent, exceptionMessage); } }