Skip to content

Commit 001aa7f

Browse files
test: optimization test is no longer broken
1 parent f074df6 commit 001aa7f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

test/optimizationsystem.jl

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,9 @@ end
109109
x0 = zeros(2)
110110
p = [1.0, 100.0]
111111
f = OptimizationFunction(rosenbrock, Optimization.AutoSymbolics())
112-
@test_broken begin
113-
prob = OptimizationProblem(f, x0, p)
114-
sol = solve(prob, Newton())
115-
@test sol.u [1.0, 1.0]
116-
end
112+
prob = OptimizationProblem(f, x0, p)
113+
sol = solve(prob, Newton())
114+
@test sol.u [1.0, 1.0]
117115
end
118116

119117
# issue #819

0 commit comments

Comments
 (0)