Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/HeightStructures/HeightStructuresCalculationEntityReadExtensionsTest.cs =================================================================== diff -u -rd3c511b25782c606f9c71158ba5cf5cf5315d6ea -r8e8f8c83c45656f65adaa8e47600379dc5ae8f61 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/HeightStructures/HeightStructuresCalculationEntityReadExtensionsTest.cs (.../HeightStructuresCalculationEntityReadExtensionsTest.cs) (revision d3c511b25782c606f9c71158ba5cf5cf5315d6ea) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/HeightStructures/HeightStructuresCalculationEntityReadExtensionsTest.cs (.../HeightStructuresCalculationEntityReadExtensionsTest.cs) (revision 8e8f8c83c45656f65adaa8e47600379dc5ae8f61) @@ -94,7 +94,7 @@ CriticalOvertoppingDischargeCoefficientOfVariation = random.GetFromRange(1e-6, 9999.9999), FailureProbabilityStructureWithErosion = random.NextDouble(), WidthFlowAperturesMean = random.GetFromRange(1e-6, 9999.9999), - WidthFlowAperturesCoefficientOfVariation = random.GetFromRange(1e-6, 9999.9999), + WidthFlowAperturesStandardDeviation = random.GetFromRange(1e-6, 9999.9999), StormDurationMean = random.GetFromRange(1e-6, 9999.9999), LevelCrestStructureMean = random.GetFromRange(1e-6, 9999.9999), LevelCrestStructureStandardDeviation = random.GetFromRange(1e-6, 9999.9999), @@ -124,7 +124,7 @@ AssertRoundedDouble(entity.CriticalOvertoppingDischargeCoefficientOfVariation, input.CriticalOvertoppingDischarge.CoefficientOfVariation); Assert.AreEqual(entity.FailureProbabilityStructureWithErosion, input.FailureProbabilityStructureWithErosion); AssertRoundedDouble(entity.WidthFlowAperturesMean, input.WidthFlowApertures.Mean); - AssertRoundedDouble(entity.WidthFlowAperturesCoefficientOfVariation, input.WidthFlowApertures.CoefficientOfVariation); + AssertRoundedDouble(entity.WidthFlowAperturesStandardDeviation, input.WidthFlowApertures.StandardDeviation); AssertRoundedDouble(entity.StormDurationMean, input.StormDuration.Mean); AssertRoundedDouble(entity.LevelCrestStructureMean, input.LevelCrestStructure.Mean); AssertRoundedDouble(entity.LevelCrestStructureStandardDeviation, input.LevelCrestStructure.StandardDeviation);