File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,9 @@ mutable struct PerfTestSet <: AbstractTestSet
3939 end
4040end
4141
42- BenchmarkGroup = BenchmarkTools. BenchmarkGroup
42+ function newBenchmarkGroup () :: BenchmarkGroup
43+ return BenchmarkGroup ()
44+ end
4345
4446
4547# Save test results or child test sets
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ function perftestsuffix(context :: Context)
169169
170170 testresdict = Dict {String,Union{Dict,Test_Result}} ()
171171 if TS isa Vector
172- benchmarks = PerfTest. BenchmarkGroup ()
172+ benchmarks = PerfTest. newBenchmarkGroup ()
173173 for ts in TS
174174 testresdict[ts. description * ts. iterator] = extractTestResults (TS)
175175 benchmarks[ts. description * ts. iterator] = ts. benchmarks
You can’t perform that action at this time.
0 commit comments