Skip to content

Commit 3789307

Browse files
committed
Update
1 parent c2026d2 commit 3789307

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/serialization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ end
3838
function JSON.lower(x::BenchmarkGroup)
3939
d = Dict{String,Any}(
4040
"data" => JSON.lower(Dict(string(k) => v for (k, v) in x.data)),
41-
"tags" => JSON.lower(x.tags),
41+
"tags" => x.tags,
4242
)
4343
return ["BenchmarkGroup", d]
4444
end

test/SerializationTests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ end
125125
end
126126

127127
@testset "issue_400_tuple_as_dict_key" begin
128-
grp = BenchmarkTools.BenchmarkGroup();
128+
grp = BenchmarkTools.BenchmarkGroup()
129129
grp["a", "b"] = BenchmarkTools.BenchmarkGroup()
130130
contents = sprint(io -> BenchmarkTools.save(io, grp))
131131
@test occursin(""""data":{"(\\\"a\\", \\"b\\")":[""", contents)

0 commit comments

Comments
 (0)