Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/StochasticSoilModelExtensionsTest.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r271c2fc54b79aa394b3d8d417f9dcd6d5675728e --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/StochasticSoilModelExtensionsTest.cs (.../StochasticSoilModelExtensionsTest.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/StochasticSoilModelExtensionsTest.cs (.../StochasticSoilModelExtensionsTest.cs) (revision 271c2fc54b79aa394b3d8d417f9dcd6d5675728e) @@ -55,7 +55,7 @@ public void IntersectsWithSurfaceLineGeometry_SurfaceLineNull_ThrowArgumentNullException() { // Setup - var soilModel = new StochasticSoilModel(1, "A", "B"); + var soilModel = new StochasticSoilModel(1, "A"); soilModel.Geometry.AddRange(new[] { new Point2D(1.0, 0.0), @@ -74,7 +74,7 @@ public void IntersectsWithSurfaceLineGeometry_SurfacelineIntersectingSoilModel_ReturnTrue() { // Setup - var soilModel = new StochasticSoilModel(1, "A", "B"); + var soilModel = new StochasticSoilModel(1, "A"); soilModel.Geometry.AddRange(new[] { new Point2D(1.0, 0.0), @@ -100,7 +100,7 @@ public void IntersectsWithSurfaceLineGeometry_SurfacelineNotIntersectingSoilModel_ReturnFalse() { // Setup - var soilModel = new StochasticSoilModel(1, "A", "B"); + var soilModel = new StochasticSoilModel(1, "A"); soilModel.Geometry.AddRange(new[] { new Point2D(1.0, 0.0),