Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresFailureMechanismContextTreeNodeInfoTest.cs =================================================================== diff -u -rc0d30f326bbc7308be94ba7a77ee37744cb7bee5 -rd72a7a2a430e8adaaf5357c10feb66e1f715d3b6 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresFailureMechanismContextTreeNodeInfoTest.cs (.../HeightStructuresFailureMechanismContextTreeNodeInfoTest.cs) (revision c0d30f326bbc7308be94ba7a77ee37744cb7bee5) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresFailureMechanismContextTreeNodeInfoTest.cs (.../HeightStructuresFailureMechanismContextTreeNodeInfoTest.cs) (revision d72a7a2a430e8adaaf5357c10feb66e1f715d3b6) @@ -138,8 +138,8 @@ Assert.AreSame(failureMechanism, heightStructuresContext.FailureMechanism); Assert.AreSame(assessmentSectionStub, heightStructuresContext.AssessmentSection); - var inputCommentContext = (CommentContext) inputsFolder.Contents[3]; - Assert.AreSame(failureMechanism.InputComments, inputCommentContext.WrappedData); + var inputComment = (Comment) inputsFolder.Contents[3]; + Assert.AreSame(failureMechanism.InputComments, inputComment); var calculationsFolder = (HeightStructuresCalculationGroupContext) children[1]; Assert.AreEqual("Berekeningen", calculationsFolder.WrappedData.Name); @@ -159,8 +159,8 @@ Assert.AreSame(failureMechanism, failureMechanismResultsContext.FailureMechanism); Assert.AreSame(failureMechanism.SectionResults, failureMechanismResultsContext.WrappedData); - var outputCommentContext = (CommentContext) outputsFolder.Contents[2]; - Assert.AreSame(failureMechanism.OutputComments, outputCommentContext.WrappedData); + var outputComment = (Comment) outputsFolder.Contents[2]; + Assert.AreSame(failureMechanism.OutputComments, outputComment); } [Test] @@ -181,8 +181,8 @@ // Assert Assert.AreEqual(1, children.Length); - var commentContext = (CommentContext) children[0]; - Assert.AreSame(failureMechanism.NotRelevantComments, commentContext.WrappedData); + var comment = (Comment) children[0]; + Assert.AreSame(failureMechanism.NotRelevantComments, comment); } [Test]