From 240e06bb0e302f5e4d047d96dcae5126123952db Mon Sep 17 00:00:00 2001 From: Kaushik Kulkarni Date: Wed, 15 May 2019 10:42:34 -0500 Subject: [PATCH] Minor fixes to test_fortran_subroutines --- test/test_fortran.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_fortran.py b/test/test_fortran.py index 77321e8fa..6946f1181 100644 --- a/test/test_fortran.py +++ b/test/test_fortran.py @@ -515,8 +515,8 @@ def test_fortran_subroutines(ctx_factory): integer i, n real*8 a(n,n) - call twice(1:n, i) - call twice(i, 1:n) + call twice(n, a(1:n, i)) + call twice(n, a(i, 1:n)) end subroutine -- GitLab