summaryrefslogtreecommitdiff
path: root/numpy/random
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@googlemail.com>2011-04-01 21:21:12 +0200
committerRalf Gommers <ralf.gommers@googlemail.com>2011-04-01 21:21:12 +0200
commit689b68c3b194019700c4de7591043fcfdab1cec6 (patch)
tree67c9c10ace46a0c69ee6420cd6a55b403d2675d7 /numpy/random
parent7134a93f3d890eabd39eca1a35789ed963b665ca (diff)
downloadnumpy-689b68c3b194019700c4de7591043fcfdab1cec6.tar.gz
TST: lower precision for one more test in random. Closes #1768. Again.
Diffstat (limited to 'numpy/random')
-rw-r--r--numpy/random/tests/test_random.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/tests/test_random.py b/numpy/random/tests/test_random.py
index 7f98982ad..2782cd91d 100644
--- a/numpy/random/tests/test_random.py
+++ b/numpy/random/tests/test_random.py
@@ -152,7 +152,7 @@ class TestRandomDist(TestCase):
desired = np.array([[ 63.87858175501090585, 68.68407748911370447],
[ 65.77116116901505904, 47.09686762438974483],
[ 72.3828403199695174 , 74.18408615260374006]])
- np.testing.assert_array_almost_equal(actual, desired, decimal=14)
+ np.testing.assert_array_almost_equal(actual, desired, decimal=13)
def test_dirichlet(self):
np.random.seed(self.seed)