diff --git a/lib/OptimizationEvolutionary/test/runtests.jl b/lib/OptimizationEvolutionary/test/runtests.jl index 72b9c19ab..32a07c7ee 100644 --- a/lib/OptimizationEvolutionary/test/runtests.jl +++ b/lib/OptimizationEvolutionary/test/runtests.jl @@ -42,4 +42,7 @@ Random.seed!(1234) return false end sol = solve(prob, CMAES(μ = 40, λ = 100), callback = cb, maxiters = 100) + + #test that `store_trace=true` works now. Threw ""type Array has no field value" before. + solve(prob, CMAES(μ = 40, λ = 100), store_trace = true) end