11 lines
235 B
Python
11 lines
235 B
Python
from numpy.testing import *
|
|
|
|
rlevel = 1
|
|
|
|
class TestRegression(TestCase):
|
|
def test_numeric_random(self, level=rlevel):
|
|
"""Ticket #552"""
|
|
from numpy.oldnumeric.random_array import randint
|
|
randint(0,50,[2,3])
|
|
|