Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestHydraulicBoundaryLocation.cs
===================================================================
diff -u -r0981b22c56801334d3f71343f1a861070a404e3e -r533cfb6b8d9c3e198204d1c6ee022b79049e6d43
--- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestHydraulicBoundaryLocation.cs (.../TestHydraulicBoundaryLocation.cs) (revision 0981b22c56801334d3f71343f1a861070a404e3e)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestHydraulicBoundaryLocation.cs (.../TestHydraulicBoundaryLocation.cs) (revision 533cfb6b8d9c3e198204d1c6ee022b79049e6d43)
@@ -33,7 +33,7 @@
///
/// Creates a new instance of .
///
- public TestHydraulicBoundaryLocation() : this(null, null) { }
+ public TestHydraulicBoundaryLocation() : this(null, null) {}
///
/// Creates a new instance of with
@@ -47,12 +47,11 @@
if (designWaterLevel.HasValue)
{
DesignWaterLevelOutput = new HydraulicBoundaryLocationOutput(designWaterLevel.Value, 0, 0, 0, 0, CalculationConvergence.NotCalculated);
- DesignWaterLevel = (RoundedDouble)designWaterLevel.Value;
+ DesignWaterLevel = (RoundedDouble) designWaterLevel.Value;
}
if (waveHeight.HasValue)
{
WaveHeightOutput = new HydraulicBoundaryLocationOutput(waveHeight.Value, 0, 0, 0, 0, CalculationConvergence.NotCalculated);
- WaveHeight = (RoundedDouble)waveHeight.Value;
}
}