Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresCalculationContextTreeNodeInfoTest.cs =================================================================== diff -u -r3c1ed9049be26ab9460bf2192c55149c45fbba3c -ra08078c06de7ad327ed2b518276288e4d4f0e3a8 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresCalculationContextTreeNodeInfoTest.cs (.../HeightStructuresCalculationContextTreeNodeInfoTest.cs) (revision 3c1ed9049be26ab9460bf2192c55149c45fbba3c) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresCalculationContextTreeNodeInfoTest.cs (.../HeightStructuresCalculationContextTreeNodeInfoTest.cs) (revision a08078c06de7ad327ed2b518276288e4d4f0e3a8) @@ -160,7 +160,7 @@ Assert.IsNotNull(heightStructuresInputContext); Assert.AreSame(calculationContext.WrappedData.InputParameters, heightStructuresInputContext.WrappedData); - var output = children[2] as ProbabilisticOutput; + var output = children[2] as ProbabilityOutput; Assert.IsNotNull(output); mocks.VerifyAll(); @@ -439,7 +439,7 @@ var calculation = new HeightStructuresCalculation(new GeneralHeightStructuresInput(), new ProbabilityAssessmentInput()) { - Output = new ProbabilisticOutput(double.NaN, double.NaN, double.NaN, double.NaN, double.NaN), + Output = new ProbabilityOutput(double.NaN, double.NaN, double.NaN, double.NaN, double.NaN), InputParameters = { HydraulicBoundaryLocation = hydraulicBoundaryLocation @@ -521,7 +521,7 @@ private const int contextMenuCalculateIndex = 0; private const int contextMenuClearIndex = 1; - private class TestHeightStructuresOutput : ProbabilisticOutput + private class TestHeightStructuresOutput : ProbabilityOutput { public TestHeightStructuresOutput() : base(0, 0, 0, 0, 0) {} }