Skip to content

Commit 6252049

Browse files
fix
1 parent 59598dd commit 6252049

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

test/complex_tests.jl

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,6 @@ end
3939

4040
# currently broken
4141
for alg in implicit_autodiff
42-
@test_throws OrdinaryDiffEq.FirstAutodiffJacError solve(prob, alg)
42+
@test_throws ArgumentError solve(prob, alg)
4343
end
4444
end
45-
46-
u0 = ones(2,4) + im*ones(2,4)
47-
function f(du, u, p, t)
48-
t isa Complex && error("time is complex")
49-
du .= 1.01u
50-
end
51-
prob = SDEProblem(f, f, u0, tspan)
52-
solve(prob, SKenCarp())

0 commit comments

Comments
 (0)