Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestStructuresOutput.cs
===================================================================
diff -u -r9eea721559aaf5e17bffe18a27dc417a56bb1278 -r339e1d134a2208f180b9f369d275cb98f9736a7c
--- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestStructuresOutput.cs (.../TestStructuresOutput.cs) (revision 9eea721559aaf5e17bffe18a27dc417a56bb1278)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestStructuresOutput.cs (.../TestStructuresOutput.cs) (revision 339e1d134a2208f180b9f369d275cb98f9736a7c)
@@ -19,9 +19,7 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
-using System;
using Ringtoets.Common.Data.IllustrationPoints;
-using Ringtoets.Common.Data.Probability;
using Ringtoets.Common.Data.Structures;
namespace Ringtoets.Common.Data.TestUtil
@@ -42,18 +40,15 @@
/// Creates a new instance of .
///
/// The reliability of failure.
- /// Thrown when setting
- /// that falls outside the [0.0, 1.0] range
- /// and isn't .
public TestStructuresOutput(double reliability)
- : base(reliability, new ProbabilityAssessmentOutput(0, 0, reliability, 0, 0), null) {}
+ : base(reliability, null) {}
///
/// Creates new instance of .
///
/// The general result of this output with the
/// fault tree illustration points.
public TestStructuresOutput(GeneralResult generalResult)
- : base(0, new ProbabilityAssessmentOutput(0, 0, 0, 0, 0), generalResult) {}
+ : base(0, generalResult) {}
}
}
\ No newline at end of file