Skip to content

Commit

Permalink
fix test typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Jul 4, 2024
1 parent 4636099 commit 43e38ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/sdesystem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -464,8 +464,8 @@ fdif!(du, u0, p, t)
]
noise_eqs = [y - x
x - y]
sys1 = SDESystem(eqs_short, noiseeqs, t, [x, y, z], [σ, ρ, β], name = :sys1)
sys2 = SDESystem(eqs_short, noiseeqs, t, [x, y, z], [σ, ρ, β], name = :sys1)
sys1 = SDESystem(eqs_short, noise_eqs, t, [x, y, z], [σ, ρ, β], name = :sys1)
sys2 = SDESystem(eqs_short, noise_eqs, t, [x, y, z], [σ, ρ, β], name = :sys1)
@test_throws ArgumentError SDESystem([sys2.y ~ sys1.z], [sys2.y], t, [], [],
systems = [sys1, sys2], name = :foo)
end
Expand Down

0 comments on commit 43e38ee

Please sign in to comment.