Skip to content

Commit 0b9d51d

Browse files
refactor: format
1 parent d4f7e8a commit 0b9d51d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/odesystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1521,6 +1521,6 @@ end
15211521
@parameters p[1:2] = [1.0, 2.0]
15221522
@mtkbuild sys = ODESystem([D(x) ~ x, y^2 ~ x + sum(p)], t)
15231523
prob = DAEProblem(sys, [D(x) => x, D(y) => D(x) / 2y], [], (0.0, 1.0))
1524-
sol = solve(prob, DFBDF(), abstol=1e-8, reltol=1e-8)
1524+
sol = solve(prob, DFBDF(), abstol = 1e-8, reltol = 1e-8)
15251525
@test sol[x]sol[y^2 - sum(p)] atol=1e-5
15261526
end

0 commit comments

Comments
 (0)