Skip to content

Commit 3603368

Browse files
committed
test fix
1 parent ccd709e commit 3603368

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/jf_test_50.F90

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ subroutine test_50(error_cnt)
3434
call json%initialize(compress_vectors = .true.) ! so it will print each col on one line
3535

3636
call json%create_object(p,'') !create the root
37-
call json_value_add_real_vec_2d(json, p, 'Pcir', pcir, by_col=.true.)
37+
call json_value_add_real_vec_2d(json, p, CK_'Pcir', pcir, by_col=.true.)
3838
call json%print(p)
3939

4040
error_cnt = 0
@@ -48,7 +48,7 @@ subroutine json_value_add_real_vec_2d(json, p, name, val, by_col)
4848
class(json_core),intent(inout) :: json
4949
type(json_value),pointer :: p
5050
character(kind=CK,len=*),intent(in) :: name !! name of the variable
51-
real(wp),dimension(:,:),intent(in) :: val !! value
51+
real(wp),dimension(:,:),intent(in) :: val !! value
5252
logical,intent(in) :: by_col !! if true, write by column. if false, write by row
5353

5454
type(json_value),pointer :: var

0 commit comments

Comments
 (0)