Skip to content

Commit dd3277f

Browse files
Update dde.jl
1 parent e2ec9c7 commit dd3277f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/dde.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ sol = solve(prob, RKMil())
7878
eqs = [D(x(t)) ~ a * x(t) + b * x(t - τ) + c +* x(t) + γ) * η]
7979
@mtkbuild sys = System(eqs, t)
8080
@test equations(sys) == [D(x(t)) ~ a * x(t) + b * x(t - τ) + c]
81-
@test isequal(ModelingToolkit.get_noiseeqs(sys), [α * x(t) + γ;;])
81+
@test isequal(ModelingToolkit.get_noiseeqs(sys), [α * x(t) + γ])
8282
prob_mtk = SDDEProblem(sys, [x(t) => 1.0 + t], tspan; constant_lags = (τ,));
8383
@test_nowarn sol_mtk = solve(prob_mtk, RKMil())
8484

0 commit comments

Comments
 (0)