Index: Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs =================================================================== diff -u -r546904adcf2ed2bb08da2ad7ba1124ad8b5cfa9c -r686466dda6406ee2c7fb1f33faa60494878b1fc8 --- Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs (.../RingtoetsProjectTestHelper.cs) (revision 546904adcf2ed2bb08da2ad7ba1124ad8b5cfa9c) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs (.../RingtoetsProjectTestHelper.cs) (revision 686466dda6406ee2c7fb1f33faa60494878b1fc8) @@ -873,13 +873,22 @@ new PipingSoilLayer(1.0) { IsAquifer = true, - BelowPhreaticLevelMean = 2.2, - BelowPhreaticLevelDeviation = 1.2, - BelowPhreaticLevelShift = 3.2, - DiameterD70Mean = 2.42, - DiameterD70CoefficientOfVariation = 21.002, - PermeabilityMean = 0.9982, - PermeabilityCoefficientOfVariation = 0.220, + BelowPhreaticLevel = new LogNormalDistribution + { + Mean = (RoundedDouble) 3.2, + StandardDeviation = (RoundedDouble) 1.2, + Shift = (RoundedDouble) 2.2 + }, + DiameterD70 = new VariationCoefficientLogNormalDistribution + { + Mean = (RoundedDouble) 2.42, + CoefficientOfVariation = (RoundedDouble) 21.002 + }, + Permeability = new VariationCoefficientLogNormalDistribution + { + Mean = (RoundedDouble) 0.9982, + CoefficientOfVariation = (RoundedDouble) 0.220 + }, Color = Color.HotPink, MaterialName = "HotPinkLayer" },