Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit 3cea457

Browse files
committed
Formatting fix
1 parent dc604f5 commit 3cea457

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/least_squares.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ end
1515
prob_oop = NonlinearLeastSquaresProblem{false}(loss_function, θ_init, x)
1616

1717
for solver in [SimpleNewtonRaphson(AutoForwardDiff()), SimpleGaussNewton(AutoForwardDiff()),
18-
SimpleNewtonRaphson(AutoFiniteDiff()), SimpleGaussNewton(AutoFiniteDiff())]
18+
SimpleNewtonRaphson(AutoFiniteDiff()), SimpleGaussNewton(AutoFiniteDiff())]
1919
sol = solve(prob_oop, solver)
2020
@test norm(sol.resid) < 1e-12
2121
end

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using SafeTestsets, Test
22

33
const GROUP = get(ENV, "GROUP", "All")
44

5-
@time @testset "SimpleNonlinearSolve.jl"
5+
@time @testset "SimpleNonlinearSolve.jl" begin
66
if GROUP == "All" || GROUP == "Core"
77
@time @safetestset "Basic Tests + Some AD" include("basictests.jl")
88
@time @safetestset "Matrix Resizing Tests" include("matrix_resizing_tests.jl")

0 commit comments

Comments
 (0)