Skip to content

Commit

Permalink
Update test/test_macros.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Sep 19, 2023
1 parent fc287d1 commit 300f92b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_macros.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2126,7 +2126,7 @@ function test_issue_3514()
@variable(model, x[1:2])
@constraint(model, b, 2x .<= 1, Issue3514Tag("a"))
@test name.(b) == ["a[b]", "a[b]"]
@constraint(model, c, 2x .>= 1, [Issue3514Tag("d"),Issue3514Tag("e")])
@constraint(model, c, 2x .>= 1, [Issue3514Tag("d"), Issue3514Tag("e")])
@test name.(c) == ["d[c]", "e[c]"]
return
end
Expand Down

0 comments on commit 300f92b

Please sign in to comment.