summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@googlemail.com>2011-03-16 10:44:23 +0800
committerRalf Gommers <ralf.gommers@googlemail.com>2011-03-16 10:44:23 +0800
commit5ee9804dd299899a75659aea9b989a0a3ddf996e (patch)
tree50648668b8366735eacb1df170904c7ddceb74be /numpy
parentaada93306acfb4e2eb816faf32652edf8825cf45 (diff)
downloadnumpy-5ee9804dd299899a75659aea9b989a0a3ddf996e.tar.gz
TST: lower precision of lognormal test a little more. Closes #1768.
Thanks to Mark Sienkiewicz for testing.
Diffstat (limited to 'numpy')
-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 71097db99..7f98982ad 100644
--- a/numpy/random/tests/test_random.py
+++ b/numpy/random/tests/test_random.py
@@ -236,7 +236,7 @@ class TestRandomDist(TestCase):
desired = np.array([[ 16.50698631688883822, 36.54846706092654784],
[ 22.67886599981281748, 0.71617561058995771],
[ 65.72798501792723869, 86.84341601437161273]])
- np.testing.assert_array_almost_equal(actual, desired, decimal=14)
+ np.testing.assert_array_almost_equal(actual, desired, decimal=13)
def test_logseries(self):
np.random.seed(self.seed)