Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Update/PipingStructure/PipingStructureFailureMechanismSectionResultUpdateExtensionsTest.cs =================================================================== diff -u -ra5714fc0488030773fff50dfc82041c6cb9edc2f -ra294987551b0b2d8a27b6e1bc6235b0e2351b6f4 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Update/PipingStructure/PipingStructureFailureMechanismSectionResultUpdateExtensionsTest.cs (.../PipingStructureFailureMechanismSectionResultUpdateExtensionsTest.cs) (revision a5714fc0488030773fff50dfc82041c6cb9edc2f) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Update/PipingStructure/PipingStructureFailureMechanismSectionResultUpdateExtensionsTest.cs (.../PipingStructureFailureMechanismSectionResultUpdateExtensionsTest.cs) (revision a294987551b0b2d8a27b6e1bc6235b0e2351b6f4) @@ -149,7 +149,7 @@ PipingStructureSectionResultEntityId = sectionResult.StorageId, LayerOne = Convert.ToByte(false), LayerTwoA = Convert.ToByte(AssessmentLayerTwoAResult.Successful), - LayerThree = 1.1m, + LayerThree = 1.1 }; ringtoetsEntities.PipingStructureSectionResultEntities.Add(sectionResultEntity); @@ -160,7 +160,7 @@ // Assert Assert.AreEqual(Convert.ToByte(true), sectionResultEntity.LayerOne); Assert.AreEqual(Convert.ToByte(sectionResult.AssessmentLayerTwoA), sectionResultEntity.LayerTwoA); - Assert.AreEqual(sectionResult.AssessmentLayerThree.Value.ToNullableDecimal(), sectionResultEntity.LayerThree); + Assert.AreEqual(sectionResult.AssessmentLayerThree.Value.ToNaNAsNull(), sectionResultEntity.LayerThree); mocks.VerifyAll(); } @@ -185,7 +185,7 @@ { PipingStructureSectionResultEntityId = sectionResult.StorageId, LayerOne = Convert.ToByte(false), - LayerThree = 1.1m, + LayerThree = 1.1 }; ringtoetsEntities.PipingStructureSectionResultEntities.Add(sectionResultEntity);