From 584ce49d47c9997cd40c71f6ca534f28c03bb869 Mon Sep 17 00:00:00 2001 From: Aayush Sabharwal Date: Fri, 5 Jul 2024 15:15:10 +0530 Subject: [PATCH] fix: fix incorrect SDE specification in problem interface tests --- test/downstream/problem_interface.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/downstream/problem_interface.jl b/test/downstream/problem_interface.jl index de9554037..5701e4182 100644 --- a/test/downstream/problem_interface.jl +++ b/test/downstream/problem_interface.jl @@ -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)