Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs =================================================================== diff -u -rd9c981f7b4c64d16e55fca0cb51eb9f4c9aec28f -rab20c4eb4ca81bd3845d50210d2bdb301177af6a --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs (.../HeightStructuresFailureMechanismSectionResultTest.cs) (revision d9c981f7b4c64d16e55fca0cb51eb9f4c9aec28f) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs (.../HeightStructuresFailureMechanismSectionResultTest.cs) (revision ab20c4eb4ca81bd3845d50210d2bdb301177af6a) @@ -23,6 +23,7 @@ using NUnit.Framework; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.Probability; +using Ringtoets.Common.Data.Structures; namespace Ringtoets.HeightStructures.Data.Test { @@ -56,7 +57,7 @@ var result = new HeightStructuresFailureMechanismSectionResult(section); - var calculation = new HeightStructuresCalculation(); + var calculation = new StructuresCalculation(); // Call result.Calculation = calculation; @@ -91,7 +92,7 @@ var result = new HeightStructuresFailureMechanismSectionResult(section) { - Calculation = new HeightStructuresCalculation + Calculation = new StructuresCalculation { Output = new ProbabilityAssessmentOutput(1.0, 1.0, double.NaN, 1.0, 1.0) } @@ -113,7 +114,7 @@ double probability = 0.65; var result = new HeightStructuresFailureMechanismSectionResult(section) { - Calculation = new HeightStructuresCalculation + Calculation = new StructuresCalculation { Output = new ProbabilityAssessmentOutput(1.0, 1.0, probability, 1.0, 1.0) }