summaryrefslogtreecommitdiff
path: root/numpy/random/tests/test_random.py
diff options
context:
space:
mode:
authorSimon Gibbons <simongibbons@gmail.com>2017-04-01 22:58:48 +0100
committerSimon Gibbons <simongibbons@gmail.com>2017-04-01 22:58:48 +0100
commitdb2f5089fc5442ea8fca49188e2750a6c39b5664 (patch)
tree53afd72c1cd8bee99509470a962c0a62d6db82b8 /numpy/random/tests/test_random.py
parenta6c3d0eeab3d65b3ec047e8601da84a2ebb97d70 (diff)
downloadnumpy-db2f5089fc5442ea8fca49188e2750a6c39b5664.tar.gz
Fix test
Diffstat (limited to 'numpy/random/tests/test_random.py')
-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 cb2afa9f3..9c098eef0 100644
--- a/numpy/random/tests/test_random.py
+++ b/numpy/random/tests/test_random.py
@@ -834,7 +834,7 @@ class TestRandomDist(TestCase):
raise ValueError
x = np.array(1.0).view(ThrowableType)
- assert_raises(ValueError, np.uniform, x, x)
+ assert_raises(ValueError, np.random.uniform, x, x)
def test_vonmises(self):
np.random.seed(self.seed)