diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-07-25 23:22:12 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-07-25 23:22:12 -0600 |
commit | 0fa1a9fa0a54fce6e741333308bdafa83c0663b2 (patch) | |
tree | 96ef2d826482ab52974efca8bfcf4c1940f3507b /numpy/f2py/tests/test_mixed.py | |
parent | a0121573e6685f09e5f613280d616070b8ff99cb (diff) | |
download | numpy-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.py | 8 |
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): |