We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7124759 commit 6839148Copy full SHA for 6839148
src/tests/jf_test_1.f90
@@ -145,7 +145,11 @@ subroutine test_1(error_cnt)
145
call json%print_error_message(error_unit)
146
error_cnt = error_cnt + 1
147
else
148
- write(error_unit,'(A)') 'data(1).tf1 = ', lval
+ if (lval) then
149
+ write(error_unit,'(A)') 'data(1).tf1 = True'
150
+ else
151
+ write(error_unit,'(A)') 'data(1).tf1 = False'
152
+ end if
153
end if
154
! logical to double:
155
call json%get('data(1).tf1', rval)
0 commit comments