Skip to content

Commit 783c88a

Browse files
committed
fix test
1 parent cbdc73f commit 783c88a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/interface/wprototype_tests.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ for prob in (prob_ode_vanderpol_stiff,)
1717
update_func = (old_val, u, p, t; dtgamma) -> dtgamma,
1818
accepted_kwargs = (:dtgamma,))
1919
transform_op = ScalarOperator(0.0;
20-
update_func = (old_op, u, p, t; dtgamma, transform) -> transform ?
21-
inv(dtgamma) :
22-
one(dtgamma),
23-
accepted_kwargs = (:dtgamma, :transform))
20+
update_func = (old_op, u, p, t; dtgamma) -> inv(dtgamma),
21+
accepted_kwargs = (:dtgamma,))
2422
W_op = -(I - gamma_op * J_op) * transform_op
2523

2624
# Make problem with custom MatrixOperator jac_prototype

0 commit comments

Comments
 (0)