Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingInputTest.cs =================================================================== diff -u -re182f6f394aa75e739467a77e7bcacd9a8b25429 -r0981b22c56801334d3f71343f1a861070a404e3e --- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingInputTest.cs (.../PipingInputTest.cs) (revision e182f6f394aa75e739467a77e7bcacd9a8b25429) +++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingInputTest.cs (.../PipingInputTest.cs) (revision 0981b22c56801334d3f71343f1a861070a404e3e) @@ -398,7 +398,7 @@ PipingInput input = new PipingInput(new GeneralPipingInput()); RoundedDouble testLevel = (RoundedDouble) new Random(21).NextDouble(); - input.HydraulicBoundaryLocation = new TestHydraulicBoundaryLocation(testLevel); + input.HydraulicBoundaryLocation = TestHydraulicBoundaryLocation.CreateDesignWaterLevelCalculated(testLevel); // Call RoundedDouble calculatedAssessmentLevel = input.AssessmentLevel; @@ -431,7 +431,7 @@ var random = new Random(21); RoundedDouble testLevel = (RoundedDouble) random.NextDouble(); - input.HydraulicBoundaryLocation = new TestHydraulicBoundaryLocation(testLevel); + input.HydraulicBoundaryLocation = TestHydraulicBoundaryLocation.CreateDesignWaterLevelCalculated(testLevel); var newLevel = (RoundedDouble) random.NextDouble(); @@ -455,7 +455,7 @@ input.AssessmentLevel = testLevel; var newLevel = (RoundedDouble) random.NextDouble(); - var hydraulicBoundaryLocation = new TestHydraulicBoundaryLocation(newLevel); + var hydraulicBoundaryLocation = TestHydraulicBoundaryLocation.CreateDesignWaterLevelCalculated(newLevel); // When input.HydraulicBoundaryLocation = hydraulicBoundaryLocation;