summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
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 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)