Index: Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/RingtoetsDataSynchronizationServiceTest.cs =================================================================== diff -u -rfada97a57c5c19983ffe23b02944dc48d02c509c -r20e9bfea15dfe132ee137283a9f24bc4c413ce4a --- Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/RingtoetsDataSynchronizationServiceTest.cs (.../RingtoetsDataSynchronizationServiceTest.cs) (revision fada97a57c5c19983ffe23b02944dc48d02c509c) +++ Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/RingtoetsDataSynchronizationServiceTest.cs (.../RingtoetsDataSynchronizationServiceTest.cs) (revision 20e9bfea15dfe132ee137283a9f24bc4c413ce4a) @@ -541,7 +541,7 @@ CollectionAssert.IsEmpty(heightStructuresFailureMechanism.SectionResults); CollectionAssert.IsEmpty(heightStructuresFailureMechanism.CalculationsGroup.Children); CollectionAssert.IsEmpty(heightStructuresFailureMechanism.ForeshoreProfiles); - CollectionAssert.IsEmpty(heightStructuresFailureMechanism.HeightStructuresCollection); + CollectionAssert.IsEmpty(heightStructuresFailureMechanism.HeightStructures); StabilityPointStructuresFailureMechanism stabilityPointStructuresFailureMechanism = assessmentSection.StabilityPointStructures; CollectionAssert.IsEmpty(stabilityPointStructuresFailureMechanism.Sections); @@ -644,7 +644,7 @@ CollectionAssert.Contains(changedObjects, heightStructuresFailureMechanism); CollectionAssert.Contains(changedObjects, heightStructuresFailureMechanism.CalculationsGroup); CollectionAssert.Contains(changedObjects, heightStructuresFailureMechanism.ForeshoreProfiles); - CollectionAssert.Contains(changedObjects, heightStructuresFailureMechanism.HeightStructuresCollection); + CollectionAssert.Contains(changedObjects, heightStructuresFailureMechanism.HeightStructures); StabilityPointStructuresFailureMechanism stabilityPointStructuresFailureMechanism = assessmentSection.StabilityPointStructures; CollectionAssert.Contains(changedObjects, stabilityPointStructuresFailureMechanism); @@ -741,7 +741,7 @@ CollectionAssert.Contains(changedObjects, heightStructuresFailureMechanism); CollectionAssert.Contains(changedObjects, heightStructuresFailureMechanism.CalculationsGroup); CollectionAssert.Contains(changedObjects, heightStructuresFailureMechanism.ForeshoreProfiles); - CollectionAssert.Contains(changedObjects, heightStructuresFailureMechanism.HeightStructuresCollection); + CollectionAssert.Contains(changedObjects, heightStructuresFailureMechanism.HeightStructures); StabilityPointStructuresFailureMechanism stabilityPointStructuresFailureMechanism = assessmentSection.StabilityPointStructures; CollectionAssert.Contains(changedObjects, stabilityPointStructuresFailureMechanism); @@ -1442,7 +1442,7 @@ { yield return profile; } - foreach (HeightStructure structure in failureMechanism.HeightStructuresCollection) + foreach (HeightStructure structure in failureMechanism.HeightStructures) { yield return structure; }