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:
Phil Steitz 2011-12-20 22:15:49 +00:00
parent 9c8bb93443
commit 37a8044ddf
1 changed files with 1 additions and 1 deletions

View File

@ -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