summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests/test_mixed.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/f2py/tests/test_mixed.py')
-rw-r--r--numpy/f2py/tests/test_mixed.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/numpy/f2py/tests/test_mixed.py b/numpy/f2py/tests/test_mixed.py
index cfc669840..9055083bf 100644
--- a/numpy/f2py/tests/test_mixed.py
+++ b/numpy/f2py/tests/test_mixed.py
@@ -6,9 +6,11 @@ import textwrap
from numpy.testing import run_module_suite, assert_, assert_equal, dec
import util
+
def _path(*a):
return os.path.join(*((os.path.dirname(__file__),) + a))
+
class TestMixed(util.F2PyTest):
sources = [_path('src', 'mixed', 'foo.f'),
_path('src', 'mixed', 'foo_fixed.f90'),
@@ -16,9 +18,9 @@ class TestMixed(util.F2PyTest):
@dec.slow
def test_all(self):
- assert_( self.module.bar11() == 11)
- assert_( self.module.foo_fixed.bar12() == 12)
- assert_( self.module.foo_free.bar13() == 13)
+ assert_(self.module.bar11() == 11)
+ assert_(self.module.foo_fixed.bar12() == 12)
+ assert_(self.module.foo_free.bar13() == 13)
@dec.slow
def test_docstring(self):