Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs =================================================================== diff -u -r8bb6e849266ec28412ebfe23beccd7235c4db9bf -rcb9ea4ad53b55626245ff8399d7cf0905185e632 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision 8bb6e849266ec28412ebfe23beccd7235c4db9bf) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision cb9ea4ad53b55626245ff8399d7cf0905185e632) @@ -1568,9 +1568,9 @@ private static void AssertGrassCoverErosionInwardsOutput(GrassCoverErosionInwardsOutput expectedOutput, GrassCoverErosionInwardsOutput actualOutput) { - Assert.AreEqual(expectedOutput.WaveHeight, actualOutput.WaveHeight); - Assert.AreEqual(expectedOutput.IsOvertoppingDominant, actualOutput.IsOvertoppingDominant); - AssertProbabilityAssessmentOutput(expectedOutput.ProbabilityAssessmentOutput, actualOutput.ProbabilityAssessmentOutput); + Assert.AreEqual(expectedOutput.ResultOutput.WaveHeight, actualOutput.ResultOutput.WaveHeight); + Assert.AreEqual(expectedOutput.ResultOutput.IsOvertoppingDominant, actualOutput.ResultOutput.IsOvertoppingDominant); + AssertProbabilityAssessmentOutput(expectedOutput.ResultOutput.ProbabilityAssessmentOutput, actualOutput.ResultOutput.ProbabilityAssessmentOutput); AssertDikeHeightOutput(expectedOutput.DikeHeightOutput, actualOutput.DikeHeightOutput); AssertOvertoppingRateOutput(expectedOutput.OvertoppingRateOutput, actualOutput.OvertoppingRateOutput); }