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