Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/StructuresOutputCreateExtensionsTest.cs =================================================================== diff -u -r82c8dcdc0f254596b25e1e201a07c29500e9cab9 -r54803fcc28ee6d1283ef1ab2eaf50e49e0eb54c6 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/StructuresOutputCreateExtensionsTest.cs (.../StructuresOutputCreateExtensionsTest.cs) (revision 82c8dcdc0f254596b25e1e201a07c29500e9cab9) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/StructuresOutputCreateExtensionsTest.cs (.../StructuresOutputCreateExtensionsTest.cs) (revision 54803fcc28ee6d1283ef1ab2eaf50e49e0eb54c6) @@ -51,11 +51,13 @@ // Setup var random = new Random(567); var output = new StructuresOutput( - new ProbabilityAssessmentOutput(random.NextDouble(), - random.NextDouble(), - random.NextDouble(), - random.NextDouble(), - random.NextDouble()), null); + random.NextDouble(), + new ProbabilityAssessmentOutput( + random.NextDouble(), + random.NextDouble(), + random.NextDouble(), + random.NextDouble(), + random.NextDouble()), null); // Call var entity = output.Create(); @@ -79,11 +81,13 @@ { // Setup var output = new StructuresOutput( - new ProbabilityAssessmentOutput(double.NaN, - double.NaN, - double.NaN, - double.NaN, - double.NaN), null); + double.NaN, + new ProbabilityAssessmentOutput( + double.NaN, + double.NaN, + double.NaN, + double.NaN, + double.NaN), null); // Call var entity = output.Create();