Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresInputContextTreeNodeInfoTest.cs =================================================================== diff -u -r49084c971c0de5668befdcf5c8d6b65debf0b659 -rcb903e8cdb76e9733979fe508ee097107c022a28 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresInputContextTreeNodeInfoTest.cs (.../HeightStructuresInputContextTreeNodeInfoTest.cs) (revision 49084c971c0de5668befdcf5c8d6b65debf0b659) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresInputContextTreeNodeInfoTest.cs (.../HeightStructuresInputContextTreeNodeInfoTest.cs) (revision cb903e8cdb76e9733979fe508ee097107c022a28) @@ -27,7 +27,6 @@ using NUnit.Framework; using Rhino.Mocks; using Ringtoets.Common.Data.AssessmentSection; -using Ringtoets.Common.Data.Probability; using Ringtoets.HeightStructures.Data; using Ringtoets.HeightStructures.Forms.PresentationObjects; using Ringtoets.HeightStructures.Plugin; @@ -80,11 +79,10 @@ { // Setup var generalInput = new GeneralHeightStructuresInput(); - var probabilityAssessmentInput = new ProbabilityAssessmentInput(); var assessmentSectionMock = mocksRepository.StrictMock(); var heightStructuresInputContext = new HeightStructuresInputContext( new HeightStructuresInput(new GeneralHeightStructuresInput()), - new HeightStructuresCalculation(generalInput, probabilityAssessmentInput), + new HeightStructuresCalculation(generalInput), new HeightStructuresFailureMechanism(), assessmentSectionMock); @@ -104,10 +102,9 @@ // Setup var assessmentSectionMock = mocksRepository.StrictMock(); var generalInput = new GeneralHeightStructuresInput(); - var probabilityAssessmentInput = new ProbabilityAssessmentInput(); var heightStructuresInputContext = new HeightStructuresInputContext( new HeightStructuresInput(new GeneralHeightStructuresInput()), - new HeightStructuresCalculation(generalInput, probabilityAssessmentInput), + new HeightStructuresCalculation(generalInput), new HeightStructuresFailureMechanism(), assessmentSectionMock);