Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssessmentSectionView.cs =================================================================== diff -u -rafdb8e711afa6fc93dc33401fa433e0f0e5fd124 -r7299e9766641c36483a9ec4c127de2c1d0a28519 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssessmentSectionView.cs (.../AssessmentSectionView.cs) (revision afdb8e711afa6fc93dc33401fa433e0f0e5fd124) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssessmentSectionView.cs (.../AssessmentSectionView.cs) (revision 7299e9766641c36483a9ec4c127de2c1d0a28519) @@ -49,6 +49,7 @@ private readonly RecursiveObserver, HydraulicBoundaryLocationCalculation> waterLevelCalculationsForFactorizedLowerLimitNormObserver; private readonly RecursiveObserver, HydraulicBoundaryLocationCalculation> waveHeightCalculationsForFactorizedSignalingNormObserver; private readonly RecursiveObserver, HydraulicBoundaryLocationCalculation> waveHeightCalculationsForSignalingNormObserver; + private readonly RecursiveObserver, HydraulicBoundaryLocationCalculation> waveHeightCalculationsForLowerLimitNormObserver; private readonly RecursiveObserver, HydraulicBoundaryLocation> hydraulicBoundaryLocationObserver; /// @@ -74,6 +75,7 @@ waterLevelCalculationsForFactorizedLowerLimitNormObserver = CreateHydraulicBoundaryLocationCalculationsObserver(assessmentSection.WaterLevelCalculationsForFactorizedLowerLimitNorm); waveHeightCalculationsForFactorizedSignalingNormObserver = CreateHydraulicBoundaryLocationCalculationsObserver(assessmentSection.WaveHeightCalculationsForFactorizedSignalingNorm); waveHeightCalculationsForSignalingNormObserver = CreateHydraulicBoundaryLocationCalculationsObserver(assessmentSection.WaveHeightCalculationsForSignalingNorm); + waveHeightCalculationsForLowerLimitNormObserver = CreateHydraulicBoundaryLocationCalculationsObserver(assessmentSection.WaveHeightCalculationsForLowerLimitNorm); hydraulicBoundaryLocationsObserver = new Observer(UpdateMapData) { @@ -127,6 +129,7 @@ waterLevelCalculationsForFactorizedLowerLimitNormObserver.Dispose(); waveHeightCalculationsForFactorizedSignalingNormObserver.Dispose(); waveHeightCalculationsForSignalingNormObserver.Dispose(); + waveHeightCalculationsForLowerLimitNormObserver.Dispose(); hydraulicBoundaryLocationsObserver.Dispose(); hydraulicBoundaryLocationObserver.Dispose(); Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssessmentSectionViewTest.cs =================================================================== diff -u -rafdb8e711afa6fc93dc33401fa433e0f0e5fd124 -r7299e9766641c36483a9ec4c127de2c1d0a28519 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssessmentSectionViewTest.cs (.../AssessmentSectionViewTest.cs) (revision afdb8e711afa6fc93dc33401fa433e0f0e5fd124) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssessmentSectionViewTest.cs (.../AssessmentSectionViewTest.cs) (revision 7299e9766641c36483a9ec4c127de2c1d0a28519) @@ -58,6 +58,8 @@ assessmentSection => assessmentSection.WaveHeightCalculationsForFactorizedSignalingNorm.First())); yield return new TestCaseData(new Func( assessmentSection => assessmentSection.WaveHeightCalculationsForSignalingNorm.First())); + yield return new TestCaseData(new Func( + assessmentSection => assessmentSection.WaveHeightCalculationsForLowerLimitNorm.First())); } }