@@ -502,30 +502,30 @@ end
502
502
503
503
sch = JsonGrinder. schema ([j1,j2,j3,j4,j5,j6])
504
504
505
- @test JsonGrinder. prune_json (j1, sch) == Dict (
505
+ @test JsonGrinder. prune_json (j1, sch) == Dict {String, Any} (
506
506
" c" => Dict (" a" => Dict (" b" => [4.0 , 5.0 , 6.0 ]," a" => [1.0 , 2.0 , 3.0 ])),
507
507
" b" => Dict (" b" => 1.0 ," a" => [1.0 , 2.0 , 3.0 ]),
508
508
" a" => 4.0 )
509
509
510
- @test JsonGrinder. prune_json (j2, sch) == Dict (
510
+ @test JsonGrinder. prune_json (j2, sch) == Dict {String, Any} (
511
511
" c" => Dict (" a" => Dict (" b" => [5 , 6 ]," a" => [2 , 3 ])),
512
512
" a" => 4 )
513
513
514
514
delete! (sch. childs, :b )
515
515
516
- @test JsonGrinder. prune_json (j1, sch) == Dict (
516
+ @test JsonGrinder. prune_json (j1, sch) == Dict {String, Any} (
517
517
" c" => Dict (" a" => Dict (" b" => [4.0 , 5.0 , 6.0 ]," a" => [1.0 , 2.0 , 3.0 ])),
518
518
" a" => 4.0 )
519
519
520
- @test JsonGrinder. prune_json (j2, sch) == Dict (
520
+ @test JsonGrinder. prune_json (j2, sch) == Dict {String, Any} (
521
521
" c" => Dict (" a" => Dict (" b" => [5 , 6 ]," a" => [2 , 3 ])),
522
522
" a" => 4 )
523
523
524
524
delete! (sch. childs, :c )
525
525
526
- @test JsonGrinder. prune_json (j1, sch) == Dict (
526
+ @test JsonGrinder. prune_json (j1, sch) == Dict {String, Any} (
527
527
" a" => 4.0 )
528
528
529
- @test JsonGrinder. prune_json (j2, sch) == Dict (
529
+ @test JsonGrinder. prune_json (j2, sch) == Dict {String, Any} (
530
530
" a" => 4 )
531
531
end
0 commit comments