diff options
author | Kevin Sheppard <kevin.k.sheppard@gmail.com> | 2019-05-23 09:30:19 +0100 |
---|---|---|
committer | Kevin Sheppard <kevin.k.sheppard@gmail.com> | 2019-05-23 09:30:19 +0100 |
commit | 9e5ae6156855e5a2e2edccaf0112362ecb6d31fc (patch) | |
tree | 20dad56d76e59fc73aaed8dba1ad863def466bd2 /numpy/random/tests | |
parent | 457c6c5f3a9c08a724965be7205178b24696ad4b (diff) | |
download | numpy-9e5ae6156855e5a2e2edccaf0112362ecb6d31fc.tar.gz |
BUG: Change renamed attribute
Change renamed attribute
Diffstat (limited to 'numpy/random/tests')
-rw-r--r-- | numpy/random/tests/test_random.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/tests/test_random.py b/numpy/random/tests/test_random.py index b367599cd..22e37151c 100644 --- a/numpy/random/tests/test_random.py +++ b/numpy/random/tests/test_random.py @@ -1447,7 +1447,7 @@ class TestBroadcast(object): assert_raises(ValueError, neg_binom, n, bad_p_two * 3) def test_poisson(self): - max_lam = np.random.RandomState().poisson_lam_max + max_lam = np.random.RandomState()._poisson_lam_max lam = [1] bad_lam_one = [-1] |