Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestStructuresOutput.cs
===================================================================
diff -u -rb28a844780b613e1901fa82328ba3917f485c729 -r54803fcc28ee6d1283ef1ab2eaf50e49e0eb54c6
--- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestStructuresOutput.cs (.../TestStructuresOutput.cs) (revision b28a844780b613e1901fa82328ba3917f485c729)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestStructuresOutput.cs (.../TestStructuresOutput.cs) (revision 54803fcc28ee6d1283ef1ab2eaf50e49e0eb54c6)
@@ -46,14 +46,14 @@
/// that falls outside the [0.0, 1.0] range
/// and isn't .
public TestStructuresOutput(double probability)
- : base(new ProbabilityAssessmentOutput(0, 0, probability, 0, 0), null) {}
+ : base(probability, new ProbabilityAssessmentOutput(0, 0, probability, 0, 0), null) {}
///
/// Creates new instance of .
///
/// The general result of this output with the
/// fault tree illustration points.
public TestStructuresOutput(GeneralResult generalResult)
- : base(new ProbabilityAssessmentOutput(0, 0, 0, 0, 0), generalResult) {}
+ : base(0, new ProbabilityAssessmentOutput(0, 0, 0, 0, 0), generalResult) {}
}
}
\ No newline at end of file