Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/StochasticSoilModelCollectionTest.cs =================================================================== diff -u -r33e8882a46b193286ebf3eeec73e81b7c5921489 -r94242c0e8dc46889015a0cc34aee3e37786bb30a --- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/StochasticSoilModelCollectionTest.cs (.../StochasticSoilModelCollectionTest.cs) (revision 33e8882a46b193286ebf3eeec73e81b7c5921489) +++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/StochasticSoilModelCollectionTest.cs (.../StochasticSoilModelCollectionTest.cs) (revision 94242c0e8dc46889015a0cc34aee3e37786bb30a) @@ -40,26 +40,26 @@ protected override IEnumerable UniqueElements() { - yield return new StochasticSoilModel(5, "Model A", "segmentA"); - yield return new StochasticSoilModel(6, "Model B", "segmentA"); + yield return new StochasticSoilModel(5, "Model A"); + yield return new StochasticSoilModel(6, "Model B"); } protected override IEnumerable SingleNonUniqueElements() { const string someName = "Soil model"; - yield return new StochasticSoilModel(5, someName, "segmentA"); - yield return new StochasticSoilModel(6, someName, "segmentB"); + yield return new StochasticSoilModel(5, someName); + yield return new StochasticSoilModel(6, someName); } protected override IEnumerable MultipleNonUniqueElements() { const string someName = "Soil model"; const string someOtherName = "Other soil model"; - yield return new StochasticSoilModel(5, someName, "segmentA"); - yield return new StochasticSoilModel(6, someName, "segmentB"); - yield return new StochasticSoilModel(7, someOtherName, "segmentC"); - yield return new StochasticSoilModel(8, someOtherName, "segmentD"); - yield return new StochasticSoilModel(9, someOtherName, "segmentE"); + yield return new StochasticSoilModel(5, someName); + yield return new StochasticSoilModel(6, someName); + yield return new StochasticSoilModel(7, someOtherName); + yield return new StochasticSoilModel(8, someOtherName); + yield return new StochasticSoilModel(9, someOtherName); } protected override void AssertSingleNonUniqueElements(ArgumentException exception, IEnumerable itemsToAdd)