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/distutils/tests/test_fcompiler_gnu.py | |
parent | b4bb63c29c8bb81bcc2d2070f1bd3b81253acd85 (diff) | |
download | numpy-610438f1fb2436cec44b9ddd451daa67d846cdd0.tar.gz |
Rename test classes to CapWords.
Diffstat (limited to 'numpy/distutils/tests/test_fcompiler_gnu.py')
-rw-r--r-- | numpy/distutils/tests/test_fcompiler_gnu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/tests/test_fcompiler_gnu.py b/numpy/distutils/tests/test_fcompiler_gnu.py index c6ccea054..002d360b9 100644 --- a/numpy/distutils/tests/test_fcompiler_gnu.py +++ b/numpy/distutils/tests/test_fcompiler_gnu.py @@ -21,7 +21,7 @@ gfortran_version_strings = [ ('GNU Fortran (GCC) 4.3.0 20070316 (experimental)', '4.3.0'), ] -class test_g77_versions(NumpyTestCase): +class TestG77Versions(NumpyTestCase): def test_g77_version(self): fc = numpy.distutils.fcompiler.new_fcompiler(compiler='gnu') for vs, version in g77_version_strings: @@ -34,7 +34,7 @@ class test_g77_versions(NumpyTestCase): v = fc.version_match(vs) assert v is None, (vs, v) -class test_gortran_versions(NumpyTestCase): +class TestGortranVersions(NumpyTestCase): def test_gfortran_version(self): fc = numpy.distutils.fcompiler.new_fcompiler(compiler='gnu95') for vs, version in gfortran_version_strings: |