diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2007-10-02 07:54:11 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2007-10-02 07:54:11 +0000 |
commit | 610438f1fb2436cec44b9ddd451daa67d846cdd0 (patch) | |
tree | 05dd27f00f161ee3a54b1dcf5f3b7f161cf8a68c /numpy/fft/tests/test_helper.py | |
parent | b4bb63c29c8bb81bcc2d2070f1bd3b81253acd85 (diff) | |
download | numpy-610438f1fb2436cec44b9ddd451daa67d846cdd0.tar.gz |
Rename test classes to CapWords.
Diffstat (limited to 'numpy/fft/tests/test_helper.py')
-rw-r--r-- | numpy/fft/tests/test_helper.py | 4 |
1 files changed, 2 insertions, 2 deletions
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] |