diff options
Diffstat (limited to 'numpy/f2py/lib/tests')
-rw-r--r-- | numpy/f2py/lib/tests/test_derived_scalar.py | 2 | ||||
-rw-r--r-- | numpy/f2py/lib/tests/test_module_module.py | 2 | ||||
-rw-r--r-- | numpy/f2py/lib/tests/test_module_scalar.py | 2 | ||||
-rw-r--r-- | numpy/f2py/lib/tests/test_scalar_function_in.py | 2 | ||||
-rw-r--r-- | numpy/f2py/lib/tests/test_scalar_in_out.py | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/numpy/f2py/lib/tests/test_derived_scalar.py b/numpy/f2py/lib/tests/test_derived_scalar.py index c57778020..b5f24dea5 100644 --- a/numpy/f2py/lib/tests/test_derived_scalar.py +++ b/numpy/f2py/lib/tests/test_derived_scalar.py @@ -42,7 +42,7 @@ m, = compile(fortran_code, 'test_derived_scalar_ext') from numpy import * -class test_m(NumpyTestCase): +class TestM(NumpyTestCase): def check_foo_simple(self, level=1): a = m.myt(2) diff --git a/numpy/f2py/lib/tests/test_module_module.py b/numpy/f2py/lib/tests/test_module_module.py index 4d242ed54..0f0e88cc9 100644 --- a/numpy/f2py/lib/tests/test_module_module.py +++ b/numpy/f2py/lib/tests/test_module_module.py @@ -51,7 +51,7 @@ m,m2 = compile(fortran_code, modulenames=['test_module_module_ext', from numpy import * -class test_m(NumpyTestCase): +class TestM(NumpyTestCase): def check_foo_simple(self, level=1): foo = m.foo diff --git a/numpy/f2py/lib/tests/test_module_scalar.py b/numpy/f2py/lib/tests/test_module_scalar.py index e11a1e0ae..1ac4455be 100644 --- a/numpy/f2py/lib/tests/test_module_scalar.py +++ b/numpy/f2py/lib/tests/test_module_scalar.py @@ -40,7 +40,7 @@ m, = compile(fortran_code, modulenames = ['test_module_scalar_ext']) from numpy import * -class test_m(NumpyTestCase): +class TestM(NumpyTestCase): def check_foo_simple(self, level=1): foo = m.foo diff --git a/numpy/f2py/lib/tests/test_scalar_function_in.py b/numpy/f2py/lib/tests/test_scalar_function_in.py index 9c5cd8aba..24387def5 100644 --- a/numpy/f2py/lib/tests/test_scalar_function_in.py +++ b/numpy/f2py/lib/tests/test_scalar_function_in.py @@ -107,7 +107,7 @@ m, = compile(fortran_code, 'test_scalar_function_in_ext') from numpy import * -class test_m(NumpyTestCase): +class TestM(NumpyTestCase): def check_foo_integer1(self, level=1): i = int8(2) diff --git a/numpy/f2py/lib/tests/test_scalar_in_out.py b/numpy/f2py/lib/tests/test_scalar_in_out.py index b73036848..dc6007b8e 100644 --- a/numpy/f2py/lib/tests/test_scalar_in_out.py +++ b/numpy/f2py/lib/tests/test_scalar_in_out.py @@ -104,7 +104,7 @@ m, = compile(fortran_code, 'test_scalar_in_out_ext', source_ext = '.f') from numpy import * -class test_m(NumpyTestCase): +class TestM(NumpyTestCase): def check_foo_integer1(self, level=1): i = int8(2) |