Skip to content

Commit

Permalink
Fix results.json generation after chunk-splitting (#53335)
Browse files Browse the repository at this point in the history
Should fix the problem raised in
#53323 (comment).
  • Loading branch information
tecosaur authored Feb 15, 2024
1 parent 254f234 commit 4c2633c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/buildkitetestjson.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function json_repr(io::IO, val::String; indent::Int=0)
end
json_repr(io::IO, val::Integer; indent::Int=0) = print(io, val)
json_repr(io::IO, val::Float64; indent::Int=0) = print(io, val)
function json_repr(io::IO, val::Vector; indent::Int=0)
function json_repr(io::IO, val::AbstractVector; indent::Int=0)
print(io, '[')
for elt in val
print(io, '\n', ' '^(indent + 2))
Expand Down

0 comments on commit 4c2633c

Please sign in to comment.