summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests/test_mixed.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-07-25 23:22:12 -0600
committerCharles Harris <charlesr.harris@gmail.com>2015-07-25 23:22:12 -0600
commit0fa1a9fa0a54fce6e741333308bdafa83c0663b2 (patch)
tree96ef2d826482ab52974efca8bfcf4c1940f3507b /numpy/f2py/tests/test_mixed.py
parenta0121573e6685f09e5f613280d616070b8ff99cb (diff)
downloadnumpy-0fa1a9fa0a54fce6e741333308bdafa83c0663b2.tar.gz
STY: PEP8 fixes in numpy/f2py/tests.
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):