Index: Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs =================================================================== diff -u -r566d36e29347b40381bff26e321334b5af07c367 -r43b4218e6e71896eb4f3985555258caeb4c7f6f7 --- Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs (.../PipingCalculationScenarioContextTreeNodeInfoTest.cs) (revision 566d36e29347b40381bff26e321334b5af07c367) +++ Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs (.../PipingCalculationScenarioContextTreeNodeInfoTest.cs) (revision 43b4218e6e71896eb4f3985555258caeb4c7f6f7) @@ -766,17 +766,15 @@ } [Test] - [TestCase(true)] - [TestCase(false)] - public void OnNodeRemoved_ParentIsPipingCalculationGroupContext_RemoveCalculationFromGroup(bool groupNameEditable) + public void OnNodeRemoved_ParentIsPipingCalculationGroupContext_RemoveCalculationFromGroup() { // Setup var observer = mocks.StrictMock(); observer.Expect(o => o.UpdateObserver()); var elementToBeRemoved = new PipingCalculationScenario(new GeneralPipingInput()); - var group = new CalculationGroup("", groupNameEditable); + var group = new CalculationGroup(""); group.Children.Add(elementToBeRemoved); group.Children.Add(new PipingCalculationScenario(new GeneralPipingInput())); group.Attach(observer); @@ -811,9 +809,7 @@ } [Test] - [TestCase(true)] - [TestCase(false)] - public void OnNodeRemoved_ParentIsPipingCalculationGroupContext_RemoveCalculationFromSectionResult(bool groupNameEditable) + public void OnNodeRemoved_ParentIsPipingCalculationGroupContext_RemoveCalculationFromSectionResult() { // Setup var observer = mocks.StrictMock(); @@ -830,7 +826,7 @@ } }; - var group = new CalculationGroup("", groupNameEditable); + var group = new CalculationGroup(""); group.Children.Add(elementToBeRemoved); group.Children.Add(new PipingCalculationScenario(new GeneralPipingInput())); group.Attach(observer);