Skip to content

Commit f2f63b9

Browse files
Update lib/SCCNonlinearSolve/test/core_tests.jl
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b274b75 commit f2f63b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SCCNonlinearSolve/test/core_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ end
3838
prob2 = NonlinearProblem(NonlinearFunction{true, SciMLBase.NoSpecialize}(f2), zeros(3),(cache,nothing))
3939
sol2 = solve(prob2, NewtonRaphson())
4040

41-
function f3(du,u,(cache,p))
41+
function f3(du, u, (cache, p))
4242
du[1] = cache[1] + 2.0u[1] + 2.5u[2] + 1.5u[3]
4343
du[2] = cache[2] + 4.0u[1] - 1.5u[2] + 1.5u[3]
4444
du[3] = cache[3] + + u[1] - u[2] - u[3]

0 commit comments

Comments
 (0)