Skip to content

Commit

Permalink
fix: fix incorrect SDE specification in problem interface tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AayushSabharwal committed Jul 5, 2024
1 parent cf0f1bb commit 584ce49
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/downstream/problem_interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ set_tuple!(oprob, [10.0, 10.0])
@test get_tuple(oprob) == (10.0, 10.0)

# SDEProblem.
noiseeqs = [0.1 * x,
noiseeqs = [
0.1 * D(x),
0.1 * x,
0.1 * y,
0.1 * z]
@named noise_sys = SDESystem(sys, noiseeqs)
Expand Down

0 comments on commit 584ce49

Please sign in to comment.