From 67f24e8f2e12d9f5b8510ffd0769b13f18f5636a Mon Sep 17 00:00:00 2001 From: Chris Jordan-Squire Date: Fri, 2 Sep 2011 12:09:48 -0500 Subject: FIX: Changed named to choice, reverted other changes. --- numpy/fft/tests/test_fftpack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/fft/tests/test_fftpack.py') diff --git a/numpy/fft/tests/test_fftpack.py b/numpy/fft/tests/test_fftpack.py index ceb6a8dd7..4f70d3bc5 100644 --- a/numpy/fft/tests/test_fftpack.py +++ b/numpy/fft/tests/test_fftpack.py @@ -14,7 +14,7 @@ class TestFFTShift(TestCase): class TestFFT1D(TestCase): def test_basic(self): - rand = np.random.random_sample + rand = np.random.random x = rand(30) + 1j*rand(30) assert_array_almost_equal(fft1(x), np.fft.fft(x)) -- cgit v1.2.1