Skip to content

Commit af29dde

Browse files
committed
Format this patch
1 parent 14fc7b4 commit af29dde

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
@@ -662,7 +662,7 @@ function SciMLBase.remake_initialization_data(
662662
kws = maybe_build_initialization_problem(
663663
sys, SciMLBase.isinplace(odefn), op, t0, defs, guesses,
664664
missing_unknowns; time_dependent_init, use_scc, initialization_eqs, floatT,
665-
u0_constructor, p_constructor, allow_incomplete = true, check_units=false)
665+
u0_constructor, p_constructor, allow_incomplete = true, check_units = false)
666666

667667
odefn = remake(odefn; kws...)
668668
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
@@ -1113,7 +1113,7 @@ end
11131113
sol = solve(prob, Rodas5P())
11141114
@test SciMLBase.successful_retcode(sol)
11151115

1116-
prob2 = remake(prob, u0=[x => 0.5, y=>nothing])
1116+
prob2 = remake(prob, u0 = [x => 0.5, y=>nothing])
11171117
sol2 = solve(prob2, Rodas5P())
11181118
@test SciMLBase.successful_retcode(sol2)
11191119
end

0 commit comments

Comments
 (0)