Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismTest.cs =================================================================== diff -u -rb60b7e12cf211bdbe11e0a54734fa097e8ef2146 -r7ddd944b70d252ae493bba48ea9b31c01634082d --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismTest.cs (.../HeightStructuresFailureMechanismTest.cs) (revision b60b7e12cf211bdbe11e0a54734fa097e8ef2146) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismTest.cs (.../HeightStructuresFailureMechanismTest.cs) (revision 7ddd944b70d252ae493bba48ea9b31c01634082d) @@ -25,6 +25,7 @@ using Rhino.Mocks; using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Data.FailureMechanism; +using Ringtoets.Common.Data.Probability; namespace Ringtoets.HeightStructures.Data.Test { @@ -100,16 +101,17 @@ // Setup var mocks = new MockRepository(); var generalInput = new GeneralHeightStructuresInput(); + var normProbabilityInput = new NormProbabilityInput(); var failureMechanism = new HeightStructuresFailureMechanism { CalculationsGroup = { Children = { new CalculationGroup(), - new HeightStructuresCalculation(generalInput), + new HeightStructuresCalculation(generalInput, normProbabilityInput), mocks.StrictMock(), - new HeightStructuresCalculation(generalInput) + new HeightStructuresCalculation(generalInput, normProbabilityInput) } } };