Skip to content

Commit

Permalink
minor fix in testset names
Browse files Browse the repository at this point in the history
  • Loading branch information
aldma committed Feb 1, 2024
1 parent d3fe0cc commit 0a2b9d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/problems/test_lasso_small_strongly_convex.jl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ using ProximalAlgorithms
@test x0 == x0_backup
end

@testset "ForwardBackward (adaptive step)" begin
@testset "FastForwardBackward (adaptive step)" begin
solver = ProximalAlgorithms.FastForwardBackward(tol = TOL, adaptive = true)
y, it = solver(x0 = x0, f = fA_autodiff, g = g)
@test eltype(y) == T
Expand All @@ -107,7 +107,7 @@ using ProximalAlgorithms
@test x0 == x0_backup
end

@testset "ForwardBackward (adaptive step, regret)" begin
@testset "FastForwardBackward (adaptive step, regret)" begin
solver = ProximalAlgorithms.FastForwardBackward(tol = TOL, adaptive = true, regret_gamma=T(1.01))
y, it = solver(x0 = x0, f = fA_autodiff, g = g)
@test eltype(y) == T
Expand Down

0 comments on commit 0a2b9d6

Please sign in to comment.