Loosen tolerance a little to avoid spurious failure.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1221505 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9c8bb93443
commit
37a8044ddf
|
@ -153,7 +153,7 @@ public class RandomDataTest {
|
||||||
expected[i] = 1d / len;
|
expected[i] = 1d / len;
|
||||||
}
|
}
|
||||||
|
|
||||||
TestUtils.assertChiSquareAccept(expected, observed, 0.01);
|
TestUtils.assertChiSquareAccept(expected, observed, 0.001);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
Loading…
Reference in New Issue