Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/DesignWaterLevelLocationsViewTest.cs =================================================================== diff -u -rdf02e0f3f8fe431d194cf440d5bc39d1f2497b59 -r2b2b747a35d38d092eca298599e82ce88ee6e2d3 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/DesignWaterLevelLocationsViewTest.cs (.../DesignWaterLevelLocationsViewTest.cs) (revision df02e0f3f8fe431d194cf440d5bc39d1f2497b59) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/DesignWaterLevelLocationsViewTest.cs (.../DesignWaterLevelLocationsViewTest.cs) (revision 2b2b747a35d38d092eca298599e82ce88ee6e2d3) @@ -95,7 +95,7 @@ mockRepository.ReplayAll(); // Call - using (var view = new DesignWaterLevelLocationsView(new ObservableList(), assessmentSection, 0.01)) + using (var view = new DesignWaterLevelLocationsView(new ObservableList(), assessmentSection, () => 0.01)) { // Assert Assert.IsInstanceOf(view); @@ -571,7 +571,7 @@ double norm, Form form) { - var view = new DesignWaterLevelLocationsView(locations, assessmentSection, norm); + var view = new DesignWaterLevelLocationsView(locations, assessmentSection, () => norm); form.Controls.Add(view); form.Show();