Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Dec 26, 2023
1 parent dc12f6b commit 7c33a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_nlp_expr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ function test_convert_vector_aff_expr()
@variable(model, x)
@test [sin(x), x] isa Vector{NonlinearExpr}
@test [sin(x), x + 1] isa Vector{NonlinearExpr}
@test [sin(x), AffExpr(x)] isa Vector{NonlinearExpr}
@test [sin(x), convert(AffExpr, x)] isa Vector{NonlinearExpr}
return
end

Expand Down

0 comments on commit 7c33a61

Please sign in to comment.