blob: 235ae4fe5af67e0fc14f6065075323822c4d1433 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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])
|