Skip to content

Commit fc06f6a

Browse files
fix test
1 parent a9264a9 commit fc06f6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/upstream.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ tspan = (0.0,100.0)
1010
prob = ODEProblem(lorenz,u0,tspan)
1111
sol = solve(prob,Tsit5());
1212
sol = solve(prob,AutoTsit5(Rosenbrock23(autodiff=false)));
13+
@test_broken sol = solve(prob,AutoTsit5(Rosenbrock23()));
1314

14-
function mymodel(F, vars)
15+
function f!(F, vars)
1516
x = vars.x[1]
1617
F.x[1][1] = (x[1]+3)*(x[2]^3-7)+18
1718
F.x[1][2] = sin(x[2]*exp(x[1])-1)

0 commit comments

Comments
 (0)