Skip to content

Commit b91fafe

Browse files
committed
Mark ODAEProblem as broken and fix typo
1 parent f767f39 commit b91fafe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/clock.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ y = res.y[:]
465465
@test_broken sol(timevec .+ 1e-10, idxs = model.controller.output.u)y rtol=1e-8 # Broken due to discrete observed
466466
# plot([y sol(timevec .+ 1e-12, idxs=model.controller.output.u)], lab=["CS" "MTK"])
467467

468-
# TODO: test the same system, but with the PI contorller implemented as
468+
# TODO: test the same system, but with the PI controller implemented as
469469
# x(k) ~ x(k-1) + ki * u
470470
# y ~ x(k-1) + kp * u
471471
# Instead. This should be equivalent to the above, but gve me an error when I tried

test/state_selection.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ let
196196
prob1 = ODEProblem(sys, u0, (0.0, 0.1))
197197
prob2 = ODAEProblem(sys, u0, (0.0, 0.1))
198198
@test solve(prob1, FBDF()).retcode == ReturnCode.Success
199-
@test solve(prob2, FBDF()).retcode == ReturnCode.Success
199+
@test_broken solve(prob2, FBDF()).retcode == ReturnCode.Success
200200
end
201201

202202
let

0 commit comments

Comments
 (0)