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