Skip to content

Commit 8dda9d8

Browse files
committed
Format this patch
1 parent eb312b2 commit 8dda9d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/systems/nonlinear/initializesystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ function SciMLBase.remake_initialization_data(
660660
kws = maybe_build_initialization_problem(
661661
sys, SciMLBase.isinplace(odefn), op, t0, defs, guesses,
662662
missing_unknowns; time_dependent_init, use_scc, initialization_eqs, floatT,
663-
u0_constructor, p_constructor, allow_incomplete = true, check_units=false)
663+
u0_constructor, p_constructor, allow_incomplete = true, check_units = false)
664664

665665
odefn = remake(odefn; kws...)
666666
return SciMLBase.remake_initialization_data(sys, odefn, newu0, t0, newp, newu0, newp)

test/initializationsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ end
11061106
sol = solve(prob, Rodas5P())
11071107
@test SciMLBase.successful_retcode(sol)
11081108

1109-
prob2 = remake(prob, u0=[x => 0.5, y=>nothing])
1109+
prob2 = remake(prob, u0 = [x => 0.5, y=>nothing])
11101110
sol2 = solve(prob2, Rodas5P())
11111111
@test SciMLBase.successful_retcode(sol2)
11121112
end

0 commit comments

Comments
 (0)