diff options
Diffstat (limited to 'numpy/f2py/lib/tests/test_module_module.py')
-rw-r--r-- | numpy/f2py/lib/tests/test_module_module.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/f2py/lib/tests/test_module_module.py b/numpy/f2py/lib/tests/test_module_module.py index d56cb45a6..53348b5d8 100644 --- a/numpy/f2py/lib/tests/test_module_module.py +++ b/numpy/f2py/lib/tests/test_module_module.py @@ -51,11 +51,11 @@ m,m2 = compile(fortran_code, modulenames=['test_module_module_ext', from numpy import * -class TestM(NumpyTestCase): +class TestM(TestCase): - def check_foo_simple(self, level=1): + def test_foo_simple(self, level=1): foo = m.foo foo() if __name__ == "__main__": - NumpyTest().run() + nose.run(argv=['', __file__]) |