Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ class CMSFunctionsSpec extends PropSpec with PropertyChecks with Matchers {
// For all i > 709 this test break because of precision limits: For all i > 709 will return 0.0, which is not the
// mathematically correct value but rather the asymptote of delta.
val maxI = 709
forAll(Gen.choose(0, maxI)) { (i: Int) =>
forAll((Gen.choose(1, maxI), "depth")) { (i: Int) =>
CMSFunctions.depth(CMSFunctions.delta(i)) should be(i)
}
}
Expand Down