Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/SectionResults/ClosingStructureFailureMechanismSectionResultTest.cs =================================================================== diff -u -rce94b8228bc7e51779b3754217580f13cb35e475 -r9d7a5bd6246ec71a14f1944516d21e06954243f7 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/SectionResults/ClosingStructureFailureMechanismSectionResultTest.cs (.../ClosingStructureFailureMechanismSectionResultTest.cs) (revision ce94b8228bc7e51779b3754217580f13cb35e475) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/SectionResults/ClosingStructureFailureMechanismSectionResultTest.cs (.../ClosingStructureFailureMechanismSectionResultTest.cs) (revision 9d7a5bd6246ec71a14f1944516d21e06954243f7) @@ -74,7 +74,7 @@ var result = new ClosingStructureFailureMechanismSectionResult(section); // Call - TestDelegate test = () => result.AssessmentLayerTwoA = (RoundedDouble)a; + TestDelegate test = () => result.AssessmentLayerTwoA = a; // Assert var message = Assert.Throws(test).Message; @@ -96,13 +96,11 @@ var section = new FailureMechanismSection("Section", new[] { new Point2D(0, 0) }); var result = new ClosingStructureFailureMechanismSectionResult(section); - var assessmentLayerTwoAValue = (RoundedDouble)a; - // Call - result.AssessmentLayerTwoA = assessmentLayerTwoAValue; + result.AssessmentLayerTwoA = a; // Assert - Assert.AreEqual(assessmentLayerTwoAValue, result.AssessmentLayerTwoA); + Assert.AreEqual(a, result.AssessmentLayerTwoA); } } } \ No newline at end of file