summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2021-01-19 21:35:29 +0200
committerPearu Peterson <pearu.peterson@gmail.com>2021-01-19 21:35:29 +0200
commitc4014c7fb4f1753f296bac842098decf061e39bb (patch)
tree97c8f65b6dfb5bfcaf79d94defd97dd98b90bc7d
parent5db1d5fb64ff35429205aec4b6927a4b2c6b552b (diff)
downloadnumpy-c4014c7fb4f1753f296bac842098decf061e39bb.tar.gz
Applied reviewers comments: add ident
-rw-r--r--numpy/f2py/tests/test_callback.py19
1 files changed, 10 insertions, 9 deletions
diff --git a/numpy/f2py/tests/test_callback.py b/numpy/f2py/tests/test_callback.py
index f847dd49f..37736af21 100644
--- a/numpy/f2py/tests/test_callback.py
+++ b/numpy/f2py/tests/test_callback.py
@@ -217,15 +217,16 @@ class TestF90Callback(util.F2PyTest):
suffix = '.f90'
- code = textwrap.dedent("""
- function gh17797(f, y) result(r)
- external f
- integer(8) :: r, f
- integer(8), dimension(:) :: y
- r = f(0)
- r = r + sum(y)
- end function gh17797
- """)
+ code = textwrap.dedent(
+ """
+ function gh17797(f, y) result(r)
+ external f
+ integer(8) :: r, f
+ integer(8), dimension(:) :: y
+ r = f(0)
+ r = r + sum(y)
+ end function gh17797
+ """)
def test_gh17797(self):