Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs =================================================================== diff -u -red4b032b9903f394deb9691c2c39a9f2122ab0f5 -rfada97a57c5c19983ffe23b02944dc48d02c509c --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision ed4b032b9903f394deb9691c2c39a9f2122ab0f5) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision fada97a57c5c19983ffe23b02944dc48d02c509c) @@ -1248,7 +1248,7 @@ Assert.AreEqual(expectedFailureMechanism.GeneralInput.N, actualFailureMechanism.GeneralInput.N); AssertForeshoreProfiles(expectedFailureMechanism.ForeshoreProfiles, actualFailureMechanism.ForeshoreProfiles); - AssertHeightStructures(expectedFailureMechanism.HeightStructures, actualFailureMechanism.HeightStructures); + AssertHeightStructures(expectedFailureMechanism.HeightStructuresCollection, actualFailureMechanism.HeightStructuresCollection); AssertCalculationGroup(expectedFailureMechanism.CalculationsGroup, actualFailureMechanism.CalculationsGroup); AssertComments(expectedFailureMechanism.InputComments, actualFailureMechanism.InputComments); AssertComments(expectedFailureMechanism.OutputComments, actualFailureMechanism.OutputComments); @@ -1281,14 +1281,15 @@ } } - private static void AssertHeightStructures(ObservableList expectedHeightStructures, - ObservableList actualHeightStructures) + private static void AssertHeightStructures(StructureCollection expectedHeightStructures, + StructureCollection actualHeightStructures) { Assert.AreEqual(expectedHeightStructures.Count, actualHeightStructures.Count); for (var i = 0; i < expectedHeightStructures.Count; i++) { AssertHeightStructure(expectedHeightStructures[i], actualHeightStructures[i]); } + Assert.AreEqual(expectedHeightStructures.SourcePath, actualHeightStructures.SourcePath); } private static void AssertHeightStructure(HeightStructure expectedHeightStructure,