Index: Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs =================================================================== diff -u -r0329d5c996b70d65ef323041fc5424e974c6bfc2 -rb0e228408016f88b94ac63d6896e5bc7668a75c1 --- Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs (.../RingtoetsProjectTestHelper.cs) (revision 0329d5c996b70d65ef323041fc5424e974c6bfc2) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs (.../RingtoetsProjectTestHelper.cs) (revision b0e228408016f88b94ac63d6896e5bc7668a75c1) @@ -732,8 +732,11 @@ var locationWithOutput = new DuneLocation(13, "DuneLocation with output", new Point2D(791, 456), new DuneLocation.ConstructionProperties()) { - Output = new DuneLocationOutput(CalculationConvergence.NotCalculated, - new DuneLocationOutput.ConstructionProperties()) + Calculation = + { + Output = new DuneLocationOutput(CalculationConvergence.NotCalculated, + new DuneLocationOutput.ConstructionProperties()) + } }; var locationCalculated = new DuneLocation(14, "DuneLocation with calculated output", @@ -745,17 +748,20 @@ D50 = 4 }) { - Output = new DuneLocationOutput(CalculationConvergence.CalculatedConverged, - new DuneLocationOutput.ConstructionProperties - { - WaterLevel = 10, - WaveHeight = 20, - WavePeriod = 30, - TargetProbability = 0.4, - TargetReliability = 50, - CalculatedProbability = 0.6, - CalculatedReliability = 70 - }) + Calculation = + { + Output = new DuneLocationOutput(CalculationConvergence.CalculatedConverged, + new DuneLocationOutput.ConstructionProperties + { + WaterLevel = 10, + WaveHeight = 20, + WavePeriod = 30, + TargetProbability = 0.4, + TargetReliability = 50, + CalculatedProbability = 0.6, + CalculatedReliability = 70 + }) + } }; failureMechanism.DuneLocations.Add(locationWithoutOutput);