summaryrefslogtreecommitdiff
path: root/numpy/fft/tests
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2010-02-21 01:55:27 +0000
committerCharles Harris <charlesr.harris@gmail.com>2010-02-21 01:55:27 +0000
commit69f7f4c7e3ca4af2ae79921895efa1c2a6b11c41 (patch)
tree993228f041e983224ef4b6fca4535d69626fe0d5 /numpy/fft/tests
parent051165fb4557b67a1f50e81ad8cfb99efeeb0641 (diff)
downloadnumpy-69f7f4c7e3ca4af2ae79921895efa1c2a6b11c41.tar.gz
DEP: Fix more files for unittest deprecated functions. It isn't clear why these
tests didn't issue deprecation warnings. Are they being run?
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 1095de4bc..4f70d3bc5 100644
--- a/numpy/fft/tests/test_fftpack.py
+++ b/numpy/fft/tests/test_fftpack.py
@@ -9,7 +9,7 @@ def fft1(x):
class TestFFTShift(TestCase):
def test_fft_n(self):
- self.failUnlessRaises(ValueError,np.fft.fft,[1,2,3],0)
+ self.assertRaises(ValueError,np.fft.fft,[1,2,3],0)
class TestFFT1D(TestCase):