Index: Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/PropertyClasses/PipingInputContextPropertiesTest.cs =================================================================== diff -u -r09693d79085118c47709b7059ab7c1ef459ad2aa -r5d16bb16bb6c1de18fc053fa842c6814845bc6b9 --- Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/PropertyClasses/PipingInputContextPropertiesTest.cs (.../PipingInputContextPropertiesTest.cs) (revision 09693d79085118c47709b7059ab7c1ef459ad2aa) +++ Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/PropertyClasses/PipingInputContextPropertiesTest.cs (.../PipingInputContextPropertiesTest.cs) (revision 5d16bb16bb6c1de18fc053fa842c6814845bc6b9) @@ -591,9 +591,12 @@ properties.PhreaticLevelExit.StandardDeviation = phreaticLevelExit.Distribution.StandardDeviation; // Then - Assert.AreEqual(assessmentLevel, inputParameters.AssessmentLevel.Value); - Assert.AreEqual(entryPointL, inputParameters.EntryPointL.Value); - Assert.AreEqual(exitPointL, inputParameters.ExitPointL.Value); + Assert.AreEqual(assessmentLevel, inputParameters.AssessmentLevel, + inputParameters.AssessmentLevel.GetAccuracy()); + Assert.AreEqual(entryPointL, inputParameters.EntryPointL, + inputParameters.EntryPointL.GetAccuracy()); + Assert.AreEqual(exitPointL, inputParameters.ExitPointL, + inputParameters.ExitPointL.GetAccuracy()); Assert.AreSame(surfaceLine, inputParameters.SurfaceLine); Assert.AreSame(soilModel, inputParameters.StochasticSoilModel); Assert.AreSame(soilProfile, inputParameters.StochasticSoilProfile);