Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/AssessmentSectionTest.cs =================================================================== diff -u -r2389ee6ea48d7014101ea90df5db340b44407c12 -r504f726111ede24adc838a345fdcd1c47227c79b --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/AssessmentSectionTest.cs (.../AssessmentSectionTest.cs) (revision 2389ee6ea48d7014101ea90df5db340b44407c12) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/AssessmentSectionTest.cs (.../AssessmentSectionTest.cs) (revision 504f726111ede24adc838a345fdcd1c47227c79b) @@ -53,7 +53,7 @@ Assert.IsInstanceOf(section); Assert.AreEqual("Traject", section.Name); - Assert.IsInstanceOf(section.Comments); + Assert.IsNull(section.Comments); Assert.IsNull(section.ReferenceLine); Assert.AreEqual(AssessmentSectionComposition.Dike, section.Composition); Assert.IsInstanceOf(section.FailureMechanismContribution); @@ -118,10 +118,10 @@ const string newValue = "new comment value"; // Call - section.Comments.Text = newValue; + section.Comments = newValue; // Assert - Assert.AreEqual(newValue, section.Comments.Text); + Assert.AreEqual(newValue, section.Comments); } [Test]