summaryrefslogtreecommitdiff
path: root/numpy/fft/tests
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/fft/tests')
-rw-r--r--numpy/fft/tests/test_fftpack.py2
-rw-r--r--numpy/fft/tests/test_helper.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/numpy/fft/tests/test_fftpack.py b/numpy/fft/tests/test_fftpack.py
index 0e38fb3ea..74e2d06f5 100644
--- a/numpy/fft/tests/test_fftpack.py
+++ b/numpy/fft/tests/test_fftpack.py
@@ -4,7 +4,7 @@ set_package_path()
from numpy.fft import *
restore_path()
-class test_fftshift(NumpyTestCase):
+class TestFFTShift(NumpyTestCase):
def check_fft_n(self):
self.failUnlessRaises(ValueError,fft,[1,2,3],0)
diff --git a/numpy/fft/tests/test_helper.py b/numpy/fft/tests/test_helper.py
index 3d02c01df..aaec6530a 100644
--- a/numpy/fft/tests/test_helper.py
+++ b/numpy/fft/tests/test_helper.py
@@ -14,7 +14,7 @@ from numpy import pi
def random(size):
return rand(*size)
-class test_fftshift(NumpyTestCase):
+class TestFFTShift(NumpyTestCase):
def check_definition(self):
x = [0,1,2,3,4,-4,-3,-2,-1]
@@ -31,7 +31,7 @@ class test_fftshift(NumpyTestCase):
x = random((n,))
assert_array_almost_equal(ifftshift(fftshift(x)),x)
-class test_fftfreq(NumpyTestCase):
+class TestFFTFreq(NumpyTestCase):
def check_definition(self):
x = [0,1,2,3,4,-4,-3,-2,-1]