summaryrefslogtreecommitdiff
path: root/numpy/distutils/tests/test_fcompiler_gnu.py
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2007-10-02 07:54:11 +0000
committerStefan van der Walt <stefan@sun.ac.za>2007-10-02 07:54:11 +0000
commit610438f1fb2436cec44b9ddd451daa67d846cdd0 (patch)
tree05dd27f00f161ee3a54b1dcf5f3b7f161cf8a68c /numpy/distutils/tests/test_fcompiler_gnu.py
parentb4bb63c29c8bb81bcc2d2070f1bd3b81253acd85 (diff)
downloadnumpy-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.py4
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: