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 a00be90 commit 75bd3c5Copy full SHA for 75bd3c5
src/tests/jf_test_34.F90
@@ -67,7 +67,7 @@ subroutine test_34(error_cnt)
67
call json%destroy(p)
68
69
call json%create_array(p,'integer_array')
70
- call json%create_integer(e,1,'')
+ call json%create_integer(e,1,CK_'')
71
call json%add(p,e)
72
call json%string_info(p,max_str_len=max_str_len,ilen=ilen,found=found)
73
@@ -79,7 +79,7 @@ subroutine test_34(error_cnt)
79
80
81
82
83
84
call json%string_info(p,max_str_len=max_str_len,ilen=ilen)
85
call json%clear_exceptions()
@@ -137,6 +137,11 @@ subroutine test_34(error_cnt)
137
138
end do
139
140
+ ! rename:
141
+ call json%initialize(trailing_spaces_significant=.true.)
142
+ call json%create_integer(p,1,CK_'a')
143
+ call json%rename(p,CK_'b ')
144
+
145
end subroutine test_34
146
147
end module jf_test_34_mod
0 commit comments