Index: Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs =================================================================== diff -u -rb6b66dd18eb14bc0723da7aa10d81a8e14e5b645 -r63cc10a9033c4da20c993fa59ce51c10caca3bd9 --- Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs (.../PipingCalculationScenarioContextTreeNodeInfoTest.cs) (revision b6b66dd18eb14bc0723da7aa10d81a8e14e5b645) +++ Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs (.../PipingCalculationScenarioContextTreeNodeInfoTest.cs) (revision 63cc10a9033c4da20c993fa59ce51c10caca3bd9) @@ -823,8 +823,8 @@ using (var treeViewControl = new TreeViewControl()) { var calculation = new PipingCalculationScenario(new GeneralPipingInput()); - var pipingFailureMechanism = new TestPipingFailureMechanism(); - pipingFailureMechanism.SetSections(new[] + var failureMechanism = new TestPipingFailureMechanism(); + FailureMechanismTestHelper.SetSections(failureMechanism, new[] { new FailureMechanismSection("A", new[] { @@ -836,7 +836,7 @@ new CalculationGroup(), Enumerable.Empty(), Enumerable.Empty(), - pipingFailureMechanism, + failureMechanism, assessmentSection); var mainWindow = mocks.DynamicMock(); @@ -935,7 +935,7 @@ // Given using (var treeViewControl = new TreeViewControl()) { - var pipingFailureMechanism = new TestPipingFailureMechanism(); + var failureMechanism = new TestPipingFailureMechanism(); var assessmentSection = new AssessmentSectionStub(); var hydraulicBoundaryLocation = new TestHydraulicBoundaryLocation(); @@ -945,7 +945,7 @@ }, true); PipingCalculationScenario calculation = PipingCalculationScenarioTestFactory.CreatePipingCalculationScenarioWithValidInput(hydraulicBoundaryLocation); - pipingFailureMechanism.SetSections(new[] + FailureMechanismTestHelper.SetSections(failureMechanism, new[] { new FailureMechanismSection("A", new[] { @@ -957,7 +957,7 @@ new CalculationGroup(), Enumerable.Empty(), Enumerable.Empty(), - pipingFailureMechanism, + failureMechanism, assessmentSection); var mainWindow = mocks.DynamicMock();