Skip to content

Commit 4c2633c

Browse files
authored
Fix results.json generation after chunk-splitting (#53335)
Should fix the problem raised in #53323 (comment).
1 parent 254f234 commit 4c2633c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/buildkitetestjson.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function json_repr(io::IO, val::String; indent::Int=0)
2929
end
3030
json_repr(io::IO, val::Integer; indent::Int=0) = print(io, val)
3131
json_repr(io::IO, val::Float64; indent::Int=0) = print(io, val)
32-
function json_repr(io::IO, val::Vector; indent::Int=0)
32+
function json_repr(io::IO, val::AbstractVector; indent::Int=0)
3333
print(io, '[')
3434
for elt in val
3535
print(io, '\n', ' '^(indent + 2))

0 commit comments

Comments
 (0)