blob: dd221699da7c5bd97f08b65c693240576ded059a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from __future__ import division
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])
|