summaryrefslogtreecommitdiff
path: root/numpy/random/tests/test_regression.py
diff options
context:
space:
mode:
authorgfyoung <gfyoung17@gmail.com>2017-03-26 14:30:28 -0700
committergfyoung <gfyoung17@gmail.com>2017-05-09 03:12:52 -0400
commit1f88730b3140af1efb7d2e789d21078ad66c8eee (patch)
treeb5bf76ed7ce34652098fd65e99e59a94337c5c98 /numpy/random/tests/test_regression.py
parent23b0cf3a5925dbc1f0503fbdacdf8088372f4ab5 (diff)
downloadnumpy-1f88730b3140af1efb7d2e789d21078ad66c8eee.tar.gz
BUG: Buttress handling of extreme values in randint
Diffstat (limited to 'numpy/random/tests/test_regression.py')
-rw-r--r--numpy/random/tests/test_regression.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/numpy/random/tests/test_regression.py b/numpy/random/tests/test_regression.py
index b50b6b260..ce435b374 100644
--- a/numpy/random/tests/test_regression.py
+++ b/numpy/random/tests/test_regression.py
@@ -55,15 +55,6 @@ class TestRegression(TestCase):
b = np.random.permutation(long(12))
assert_array_equal(a, b)
- def test_randint_range(self):
- # Test for ticket #1690
- lmax = np.iinfo('l').max
- lmin = np.iinfo('l').min
- try:
- random.randint(lmin, lmax)
- except:
- raise AssertionError
-
def test_shuffle_mixed_dimension(self):
# Test for trac ticket #2074
for t in [[1, 2, 3, None],