Skip to content

Commit c080f19

Browse files
committed
Fix value stability tests
1 parent 1320262 commit c080f19

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

rand_distr/tests/value_stability.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,12 +203,12 @@ fn gamma_stability() {
203203
// Beta has two special cases:
204204
//
205205
// 1. min(alpha, beta) <= 1
206-
// 2. min(alpha, beta > 1
206+
// 2. min(alpha, beta) > 1
207207
test_samples(223, Beta::new(1.0, 0.8).unwrap(), &[
208-
0.2958284085602274,
209-
0.9384411906056516,
210-
0.3151361582723264,
211-
0.6150273348630618,
208+
0.8300703726659456,
209+
0.8134131062097899,
210+
0.47912589330631555,
211+
0.25323238071138526,
212212
]);
213213
test_samples(223, Beta::new(3.0, 1.2).unwrap(), &[
214214
0.49563509121756827,

0 commit comments

Comments
 (0)