Skip to content

Commit 9bc479a

Browse files
committed
test: remove DAQP time limit warning checkup
1 parent 33cdb6e commit 9bc479a

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

test/3_test_predictive_control.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@
1818
mpc6 = LinMPC(model, Lwt=[0,1], Hp=15)
1919
@test mpc6.weights.L_Hp Diagonal(diagm(repeat(Float64[0, 1], 15)))
2020
@test mpc6.weights.L_Hp isa Hermitian{Float64, Diagonal{Float64, Vector{Float64}}}
21-
mpc7 = @test_logs(
22-
(:warn, "Solving time limit is not supported by the DAQP optimizer."),
23-
LinMPC(model, optim=JuMP.Model(DAQP.Optimizer))
24-
)
21+
mpc7 = LinMPC(model, optim=JuMP.Model(DAQP.Optimizer))
2522
@test solver_name(mpc7.optim) == "DAQP"
2623
kf = KalmanFilter(model)
2724
mpc8 = LinMPC(kf)

0 commit comments

Comments
 (0)