Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/StochasticSoilModelExtensionsTest.cs =================================================================== diff -u -r81fa8a9bf3bd503cbd280e88b8f6037a840cff12 -r94242c0e8dc46889015a0cc34aee3e37786bb30a --- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/StochasticSoilModelExtensionsTest.cs (.../StochasticSoilModelExtensionsTest.cs) (revision 81fa8a9bf3bd503cbd280e88b8f6037a840cff12) +++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/StochasticSoilModelExtensionsTest.cs (.../StochasticSoilModelExtensionsTest.cs) (revision 94242c0e8dc46889015a0cc34aee3e37786bb30a) @@ -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),