Skip to content

Commit

Permalink
Increased threshold on TestBinomial.
Browse files Browse the repository at this point in the history
  • Loading branch information
c committed Oct 23, 2023
1 parent 8c1cbe5 commit a52e21a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/shared/src/test/scala/TestBinomial.scala
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ class TestBinomial extends munit.FunSuite:

val eB:EstimatedBinomial = sB.estimate

assertEqualsDouble(eB.μ, mean, 0.01)
assertEqualsDouble(eB.`σ²`, variance, 0.01)
assertEqualsDouble(eB.μ, mean, 0.1)
assertEqualsDouble(eB.`σ²`, variance, 0.1)

}

Expand Down

0 comments on commit a52e21a

Please sign in to comment.