summaryrefslogtreecommitdiff
path: root/numpy/fft/tests
diff options
context:
space:
mode:
authorChris Jordan-Squire <cjordan1@uw.edu>2011-09-02 12:09:48 -0500
committerCharles Harris <charlesr.harris@gmail.com>2011-12-17 09:03:51 -0700
commit67f24e8f2e12d9f5b8510ffd0769b13f18f5636a (patch)
tree63a4240e8a3cb2e9efac7283669522e5e992fb69 /numpy/fft/tests
parent8b6c850cf3e6ec664705e9823014e59edc1a26e7 (diff)
downloadnumpy-67f24e8f2e12d9f5b8510ffd0769b13f18f5636a.tar.gz
FIX: Changed named to choice, reverted other changes.
Diffstat (limited to 'numpy/fft/tests')
-rw-r--r--numpy/fft/tests/test_fftpack.py2
1 files changed, 1 insertions, 1 deletions
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))