Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/WaveHeightLocationsViewInfoTest.cs =================================================================== diff -u -r82feef3e508c2a4fdae35ce6af4b755a3d0c4160 -r5a54a4db63685bd36cc9b979d2358c32a8a0f405 --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/WaveHeightLocationsViewInfoTest.cs (.../WaveHeightLocationsViewInfoTest.cs) (revision 82feef3e508c2a4fdae35ce6af4b755a3d0c4160) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/WaveHeightLocationsViewInfoTest.cs (.../WaveHeightLocationsViewInfoTest.cs) (revision 5a54a4db63685bd36cc9b979d2358c32a8a0f405) @@ -121,6 +121,7 @@ var context = new WaveHeightLocationsContext(locations, assessmentSection, + () => 0.01, hbl => new HydraulicBoundaryLocationCalculation(), "Category"); @@ -160,6 +161,7 @@ var context = new WaveHeightLocationsContext(hydraulicBoundaryLocations, assessmentSection, + () => 0.01, hbl => hydraulicBoundaryLocationsLookup[hbl], "Category"); @@ -202,17 +204,20 @@ mocks.ReplayAll(); + Func getNormFunc = () => 0.01; var assessmentSection = new ObservableTestAssessmentSectionStub(); var locations = new ObservableList(); + var context = new WaveHeightLocationsContext(locations, assessmentSection, + getNormFunc, hbl => new HydraulicBoundaryLocationCalculation(), "Category"); using (var view = new WaveHeightLocationsView(locations, hbl => new HydraulicBoundaryLocationCalculation(), assessmentSection, - () => 0.01)) + getNormFunc)) using (var ringtoetsPlugin = new RingtoetsPlugin()) { info = ringtoetsPlugin.GetViewInfos().First(tni => tni.ViewType == typeof(WaveHeightLocationsView));