Index: Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/ImportSoilProfileFromDatabaseTest.cs =================================================================== diff -u -r17651988db014bcbf2059c03ba0aef438f79bec4 -r43fb77c51a8d1c0af128a2da0c3d51bbea6e25bb --- Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/ImportSoilProfileFromDatabaseTest.cs (.../ImportSoilProfileFromDatabaseTest.cs) (revision 17651988db014bcbf2059c03ba0aef438f79bec4) +++ Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/ImportSoilProfileFromDatabaseTest.cs (.../ImportSoilProfileFromDatabaseTest.cs) (revision 43fb77c51a8d1c0af128a2da0c3d51bbea6e25bb) @@ -39,8 +39,8 @@ importer.Import(context, databasePath); // Then - Assert.AreEqual(1, pipingFailureMechanism.SoilProfiles.Count()); - PipingSoilProfile profile = pipingFailureMechanism.SoilProfiles.ElementAt(0); + Assert.AreEqual(1, pipingFailureMechanism.StochasticSoilModels.Count); + PipingSoilProfile profile = pipingFailureMechanism.StochasticSoilModels[0].StochasticSoilProfiles[0].SoilProfile; PipingProfile pipingProfile = PipingProfileCreator.Create(profile); @@ -102,8 +102,8 @@ importer.Import(context, databasePath); // Then - Assert.AreEqual(1, pipingFailureMechanism.SoilProfiles.Count()); - PipingSoilProfile profile = pipingFailureMechanism.SoilProfiles.ElementAt(0); + Assert.AreEqual(1, pipingFailureMechanism.StochasticSoilModels.Count); + PipingSoilProfile profile = pipingFailureMechanism.StochasticSoilModels[0].StochasticSoilProfiles[0].SoilProfile; PipingProfile pipingProfile = PipingProfileCreator.Create(profile); @@ -164,8 +164,8 @@ importer.Import(context, databasePath); // Then - Assert.AreEqual(1, pipingFailureMechanism.SoilProfiles.Count()); - PipingSoilProfile profile = pipingFailureMechanism.SoilProfiles.ElementAt(0); + Assert.AreEqual(1, pipingFailureMechanism.StochasticSoilModels.Count); + PipingSoilProfile profile = pipingFailureMechanism.StochasticSoilModels[0].StochasticSoilProfiles[0].SoilProfile; PipingProfile pipingProfile = PipingProfileCreator.Create(profile); var defaultPipingLayer = new PipingLayer();