Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/MacrostabilityOutwardsSectionResultEntityReadExtensionsTest.cs =================================================================== diff -u -r7d790a82bda0347f47961162de614bacfa8e288c -ra294987551b0b2d8a27b6e1bc6235b0e2351b6f4 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/MacrostabilityOutwardsSectionResultEntityReadExtensionsTest.cs (.../MacrostabilityOutwardsSectionResultEntityReadExtensionsTest.cs) (revision 7d790a82bda0347f47961162de614bacfa8e288c) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/MacrostabilityOutwardsSectionResultEntityReadExtensionsTest.cs (.../MacrostabilityOutwardsSectionResultEntityReadExtensionsTest.cs) (revision a294987551b0b2d8a27b6e1bc6235b0e2351b6f4) @@ -76,8 +76,8 @@ var entity = new MacrostabilityOutwardsSectionResultEntity { MacrostabilityOutwardsSectionResultEntityId = entityId, - LayerThree = Convert.ToDecimal(layerThree), - LayerTwoA = Convert.ToDecimal(layerTwoA), + LayerThree = layerThree, + LayerTwoA = layerTwoA, LayerOne = Convert.ToByte(layerOne), FailureMechanismSectionEntity = failureMechanismSectionEntity }; @@ -107,7 +107,7 @@ { LayerOne = Convert.ToByte(layerOne), LayerTwoA = null, - LayerThree = Convert.ToDecimal(new Random(21).NextDouble()), + LayerThree = new Random(21).NextDouble(), FailureMechanismSectionEntity = failureMechanismSectionEntity }; var sectionResult = new MacrostabilityOutwardsFailureMechanismSectionResult(new TestFailureMechanismSection()); @@ -131,7 +131,7 @@ var entity = new MacrostabilityOutwardsSectionResultEntity { LayerOne = Convert.ToByte(layerOne), - LayerTwoA = Convert.ToDecimal(new Random(21).NextDouble()), + LayerTwoA = new Random(21).NextDouble(), LayerThree = null, FailureMechanismSectionEntity = failureMechanismSectionEntity };