Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityOutwardsSectionResultRowTest.cs =================================================================== diff -u -r9d7a5bd6246ec71a14f1944516d21e06954243f7 -rf1bf048f691ca575f22e8807911ace0338fa425d --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityOutwardsSectionResultRowTest.cs (.../MacrostabilityOutwardsSectionResultRowTest.cs) (revision 9d7a5bd6246ec71a14f1944516d21e06954243f7) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityOutwardsSectionResultRowTest.cs (.../MacrostabilityOutwardsSectionResultRowTest.cs) (revision f1bf048f691ca575f22e8807911ace0338fa425d) @@ -24,7 +24,6 @@ using Core.Common.Base.Data; using Core.Common.Base.Geometry; using Core.Common.Utils.Reflection; - using NUnit.Framework; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; @@ -67,11 +66,11 @@ Assert.AreEqual(result.AssessmentLayerThree, row.AssessmentLayerThree); Assert.IsTrue(TypeUtils.HasTypeConverter( - r => r.AssessmentLayerTwoA)); + FailureMechanismSectionResultNoProbabilityValueDoubleConverter>( + r => r.AssessmentLayerTwoA)); Assert.IsTrue(TypeUtils.HasTypeConverter( - r => r.AssessmentLayerThree)); + FailureMechanismSectionResultNoValueRoundedDoubleConverter>( + r => r.AssessmentLayerThree)); } [Test] @@ -150,7 +149,7 @@ var row = new MacrostabilityOutwardsSectionResultRow(result); // Call - row.AssessmentLayerThree = (RoundedDouble)newValue; + row.AssessmentLayerThree = (RoundedDouble) newValue; // Assert Assert.AreEqual(newValue, result.AssessmentLayerThree, row.AssessmentLayerThree.GetAccuracy()); @@ -162,6 +161,6 @@ { new Point2D(0, 0) }); - } + } } } \ No newline at end of file