Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs =================================================================== diff -u -ra97ce3590a70df41b28cac28f21b12168f5c50ee -rb3af39ba024b8e12fe238d85130697255db28c59 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision a97ce3590a70df41b28cac28f21b12168f5c50ee) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision b3af39ba024b8e12fe238d85130697255db28c59) @@ -302,8 +302,8 @@ expectedAssessmentSection.WaterPressureAsphaltCover.SectionResults, actualAssessmentSection.WaterPressureAsphaltCover.SectionResults); AssertFailureMechanismSectionResults( - expectedAssessmentSection.ClosingStructure.SectionResults, - actualAssessmentSection.ClosingStructure.SectionResults); + expectedAssessmentSection.ClosingStructures.SectionResults, + actualAssessmentSection.ClosingStructures.SectionResults); AssertFailureMechanismSectionResults( expectedAssessmentSection.MacrostabilityOutwards.SectionResults, actualAssessmentSection.MacrostabilityOutwards.SectionResults); @@ -408,7 +408,7 @@ } } - private static void AssertFailureMechanismSectionResults(IEnumerable expectedSectionResults, IEnumerable actualSectionResults) + private static void AssertFailureMechanismSectionResults(IEnumerable expectedSectionResults, IEnumerable actualSectionResults) { var expectedSectionResultsArray = expectedSectionResults.ToArray(); var actualSectionResultsArray = actualSectionResults.ToArray(); @@ -417,8 +417,8 @@ for (var i = 0; i < expectedSectionResultsArray.Length; i++) { - ClosingStructureFailureMechanismSectionResult expectedSection = expectedSectionResultsArray[i]; - ClosingStructureFailureMechanismSectionResult actualSection = actualSectionResultsArray[i]; + ClosingStructuresFailureMechanismSectionResult expectedSection = expectedSectionResultsArray[i]; + ClosingStructuresFailureMechanismSectionResult actualSection = actualSectionResultsArray[i]; Assert.AreEqual(expectedSection.AssessmentLayerOne, actualSection.AssessmentLayerOne); Assert.AreEqual(expectedSection.AssessmentLayerTwoA, actualSection.AssessmentLayerTwoA);