Skip to content

Commit

Permalink
Applied reviewers comments: add ident
Browse files Browse the repository at this point in the history
  • Loading branch information
pearu authored and charris committed Feb 7, 2021
1 parent f7246f7 commit 48ba4dd
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions numpy/f2py/tests/test_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):

Expand Down

0 comments on commit 48ba4dd

Please sign in to comment.