Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/AssessmentSectionCommentContextTreeNodeInfoTest.cs =================================================================== diff -u -ra9aafffab97152303562110b1d789bacb465ce24 -r5ef5e3e186036b4985798236624d86b2801b87d3 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/AssessmentSectionCommentContextTreeNodeInfoTest.cs (.../AssessmentSectionCommentContextTreeNodeInfoTest.cs) (revision a9aafffab97152303562110b1d789bacb465ce24) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/AssessmentSectionCommentContextTreeNodeInfoTest.cs (.../AssessmentSectionCommentContextTreeNodeInfoTest.cs) (revision 5ef5e3e186036b4985798236624d86b2801b87d3) @@ -47,7 +47,7 @@ { mocks = new MockRepository(); plugin = new RingtoetsGuiPlugin(); - info = plugin.GetTreeNodeInfos().First(tni => tni.TagType == typeof(AssessmentSectionCommentContext)); + info = plugin.GetTreeNodeInfos().First(tni => tni.TagType == typeof(CommentContext)); } [TearDown] @@ -60,7 +60,7 @@ public void Initialized_Always_ExpectedPropertiesSet() { // Assert - Assert.AreEqual(typeof(AssessmentSectionCommentContext), info.TagType); + Assert.AreEqual(typeof(CommentContext), info.TagType); Assert.IsNull(info.EnsureVisibleOnCreate); Assert.IsNull(info.ChildNodeObjects); Assert.IsNull(info.CanRename); @@ -82,7 +82,7 @@ { // Setup var assessmentSectionMock = mocks.StrictMock(); - var context = new AssessmentSectionCommentContext(assessmentSectionMock); + var context = new CommentContext(assessmentSectionMock); mocks.ReplayAll(); @@ -98,7 +98,7 @@ { // Setup var assessmentSectionMock = mocks.StrictMock(); - var context = new AssessmentSectionCommentContext(assessmentSectionMock); + var context = new CommentContext(assessmentSectionMock); mocks.ReplayAll();