Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs =================================================================== diff -u -r4bf59bb3506b840b284efe0c0f4431b7876e0e5b -r71d8173532c9c038e25caf03e296beb8e8f9cbe8 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs (.../HeightStructuresFailureMechanismSectionResultTest.cs) (revision 4bf59bb3506b840b284efe0c0f4431b7876e0e5b) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs (.../HeightStructuresFailureMechanismSectionResultTest.cs) (revision 71d8173532c9c038e25caf03e296beb8e8f9cbe8) @@ -71,11 +71,12 @@ // Setup FailureMechanismSection section = CreateSection(); + var probabilityAssessmentOutput = new ProbabilityAssessmentOutput(1.0, 1.0, double.NaN, 1.0, 1.0); var result = new HeightStructuresFailureMechanismSectionResult(section) { Calculation = new StructuresCalculation { - Output = new ProbabilityAssessmentOutput(1.0, 1.0, double.NaN, 1.0, 1.0) + Output = new StructuresOutput(probabilityAssessmentOutput) } }; @@ -93,11 +94,12 @@ FailureMechanismSection section = CreateSection(); const double probability = 0.65; + var probabilityAssessmentOutput = new ProbabilityAssessmentOutput(1.0, 1.0, probability, 1.0, 1.0); var result = new HeightStructuresFailureMechanismSectionResult(section) { Calculation = new StructuresCalculation { - Output = new ProbabilityAssessmentOutput(1.0, 1.0, probability, 1.0, 1.0) + Output = new StructuresOutput(probabilityAssessmentOutput) } };