Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Integration.Test/GrassCoverErosionInwardsCalculationActivityIntegrationTest.cs =================================================================== diff -u -r9598b5ccb274c8aedd4d0407ef3120d82935d3fe -r53aef346fd0ee3cc79d1f5df9171c476453f2935 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Integration.Test/GrassCoverErosionInwardsCalculationActivityIntegrationTest.cs (.../GrassCoverErosionInwardsCalculationActivityIntegrationTest.cs) (revision 9598b5ccb274c8aedd4d0407ef3120d82935d3fe) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Integration.Test/GrassCoverErosionInwardsCalculationActivityIntegrationTest.cs (.../GrassCoverErosionInwardsCalculationActivityIntegrationTest.cs) (revision 53aef346fd0ee3cc79d1f5df9171c476453f2935) @@ -350,22 +350,22 @@ private static DikeProfile CreateDikeProfile() { - DikeProfile dikeProfile = new DikeProfile(new Point2D(0, 0), new[] - { - new RoughnessPoint(new Point2D(1.1, 2.2), 0.6), - new RoughnessPoint(new Point2D(3.3, 4.4), 0.7) - }, new[] - { - new Point2D(3.3, 4.4), - new Point2D(5.5, 6.6) - }) - { - Orientation = (RoundedDouble) 5.5, - BreakWater = new BreakWater(BreakWaterType.Dam, 10.0), - DikeHeight = (RoundedDouble) 10 - }; - - return dikeProfile; + return new DikeProfile(new Point2D(0, 0), + new[] + { + new RoughnessPoint(new Point2D(1.1, 2.2), 0.6), + new RoughnessPoint(new Point2D(3.3, 4.4), 0.7) + }, new[] + { + new Point2D(3.3, 4.4), + new Point2D(5.5, 6.6) + }, + new BreakWater(BreakWaterType.Dam, 10.0), + new DikeProfile.ConstructionProperties + { + Orientation = 5.5, + DikeHeight = 10 + }); } } } \ No newline at end of file