Skip to content

Commit

Permalink
Relax flaky kurtosis test
Browse files Browse the repository at this point in the history
  • Loading branch information
vks committed Dec 17, 2023
1 parent 58bb5f3 commit 12137c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/random.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ fn exponential_distribution() {
assert_almost_eq!(a.population_variance().sqrt(), 1. / lambda, 1e-2);
assert_almost_eq!(a.error_mean(), 0.0, 1e-2);
assert_almost_eq!(a.skewness(), 2.0, 1e-1);
assert_almost_eq!(a.kurtosis(), 6.0, 1e-1);
assert_almost_eq!(a.kurtosis(), 6.0, 1.5e-1);
}

0 comments on commit 12137c1

Please sign in to comment.