Skip to content

Commit 43cabea

Browse files
try and try again
1 parent 1f881eb commit 43cabea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/odesystem.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -467,9 +467,9 @@ prob = ODEProblem(sys, [], (0, 1.0))
467467
sol = solve(prob, Tsit5())
468468
@test sol[2x[1] + 3x[3] + norm(x)]
469469
2sol[x[1]] + 3sol[x[3]] + sol[norm(x)]
470-
@test sol[x + [y, 2y, 3y]] [sol[x] + sol[y]
471-
sol[x] + 2sol[y]
472-
sol[x] + 3sol[y]]
470+
@test sol[x + [y, 2y, 3y]] [sol[x] .+ sol[y]
471+
sol[x] .+ 2sol[y]
472+
sol[x] .+ 3sol[y]]
473473

474474
# Mixed Difference Differential equations
475475
@parameters t a b c d

0 commit comments

Comments
 (0)