Skip to content

Commit 1ddbae5

Browse files
test: don't build initializeprob in tests to avoid #3033
1 parent 062b93f commit 1ddbae5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/split_parameters.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ eqs = [y ~ src.output.u
8383
s = complete(sys)
8484
sys = structural_simplify(sys)
8585
prob = ODEProblem(
86-
sys, [], (0.0, t_end), [s.src.interpolator => Interpolator(x, dt)]; tofloat = false)
86+
sys, [], (0.0, t_end), [s.src.interpolator => Interpolator(x, dt)];
87+
tofloat = false, build_initializeprob = false)
8788
sol = solve(prob, ImplicitEuler());
8889
@test sol.retcode == ReturnCode.Success
8990
@test sol[y][end] == x[end]

0 commit comments

Comments
 (0)