Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/PropertyClasses/MacroStabilityInwardsInputContextPropertiesTest.cs =================================================================== diff -u -r1aee3bed1c335bc1b6e48d1c5ca3df85d1f15633 -r2ab89f4256cd77d3386c27ca1cbd49a16f4abba2 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/PropertyClasses/MacroStabilityInwardsInputContextPropertiesTest.cs (.../MacroStabilityInwardsInputContextPropertiesTest.cs) (revision 1aee3bed1c335bc1b6e48d1c5ca3df85d1f15633) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/PropertyClasses/MacroStabilityInwardsInputContextPropertiesTest.cs (.../MacroStabilityInwardsInputContextPropertiesTest.cs) (revision 2ab89f4256cd77d3386c27ca1cbd49a16f4abba2) @@ -407,14 +407,15 @@ stochasticSoilProfile }); - HydraulicBoundaryLocation testHydraulicBoundaryLocation = TestHydraulicBoundaryLocation.CreateDesignWaterLevelCalculated(0.0); + HydraulicBoundaryLocation hydraulicBoundaryLocation = new TestHydraulicBoundaryLocation(); var calculationItem = new MacroStabilityInwardsCalculationScenario { InputParameters = { UseAssessmentLevelManualInput = useManualAssessmentLevelInput, - HydraulicBoundaryLocation = testHydraulicBoundaryLocation, + AssessmentLevel = random.NextRoundedDouble(), + HydraulicBoundaryLocation = hydraulicBoundaryLocation, SurfaceLine = surfaceLine, StochasticSoilModel = stochasticSoilModel, StochasticSoilProfile = stochasticSoilProfile @@ -438,7 +439,7 @@ ? inputParameters.AssessmentLevel : GetTestNormativeAssessmentLevel(); Assert.AreEqual(expectedAssessmentLevel, properties.AssessmentLevel); - Assert.AreSame(testHydraulicBoundaryLocation, properties.SelectedHydraulicBoundaryLocation.HydraulicBoundaryLocation); + Assert.AreSame(hydraulicBoundaryLocation, properties.SelectedHydraulicBoundaryLocation.HydraulicBoundaryLocation); Assert.AreEqual(inputParameters.UseAssessmentLevelManualInput, properties.UseAssessmentLevelManualInput); Assert.AreSame(surfaceLine, properties.SurfaceLine);