Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/HeightStructures/HeightStructuresCalculationEntityReadExtensionsTest.cs =================================================================== diff -u -rebdbf01f6ab35a28b3a306145796ce532920af62 -r5604c90a34d62f567560c2264964faa20bce8e0d --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/HeightStructures/HeightStructuresCalculationEntityReadExtensionsTest.cs (.../HeightStructuresCalculationEntityReadExtensionsTest.cs) (revision ebdbf01f6ab35a28b3a306145796ce532920af62) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/HeightStructures/HeightStructuresCalculationEntityReadExtensionsTest.cs (.../HeightStructuresCalculationEntityReadExtensionsTest.cs) (revision 5604c90a34d62f567560c2264964faa20bce8e0d) @@ -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.StandardDeviation); + AssertRoundedDouble(entity.WidthFlowAperturesStandardDeviation, input.WidthFlowApertures.StandardDeviation); AssertRoundedDouble(entity.StormDurationMean, input.StormDuration.Mean); AssertRoundedDouble(entity.LevelCrestStructureMean, input.LevelCrestStructure.Mean); AssertRoundedDouble(entity.LevelCrestStructureStandardDeviation, input.LevelCrestStructure.StandardDeviation);