diff options
Diffstat (limited to 'numpy/fft/tests/test_fftpack.py')
-rw-r--r-- | numpy/fft/tests/test_fftpack.py | 2 |
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): |