Skip to content

Commit 6839148

Browse files
committed
minor update to unit test.
1 parent 7124759 commit 6839148

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/tests/jf_test_1.f90

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,11 @@ subroutine test_1(error_cnt)
145145
call json%print_error_message(error_unit)
146146
error_cnt = error_cnt + 1
147147
else
148-
write(error_unit,'(A)') 'data(1).tf1 = ', lval
148+
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
149153
end if
150154
! logical to double:
151155
call json%get('data(1).tf1', rval)

0 commit comments

Comments
 (0)