diff --git a/loki/expression/tests/test_expr_visitors.py b/loki/expression/tests/test_expr_visitors.py index 29d634b35..4be4e6921 100644 --- a/loki/expression/tests/test_expr_visitors.py +++ b/loki/expression/tests/test_expr_visitors.py @@ -74,6 +74,7 @@ def test_find_variables(frontend, tmp_path): fcode = """ module test_mod use external_mod, only: rick + implicit none type my_type real(kind=8) :: never @@ -129,6 +130,7 @@ def test_substitute_expressions(frontend): fcode = """ subroutine test_routine(n, a, b) + implicit none integer, intent(in) :: n real(kind=8), intent(inout) :: a, b(n) real(kind=8) :: c(n) @@ -181,6 +183,7 @@ def test_substitute_string_expressions(frontend): fcode = """ subroutine test_routine(n, a, b) + implicit none integer, intent(in) :: n real(kind=8), intent(inout) :: a, b(n) real(kind=8) :: c(n)