Skip to content

Commit cc4ede7

Browse files
committed
Fix format
1 parent 9422059 commit cc4ede7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/Tests/test_attributes.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,12 @@ function _test_constraint_attribute(; constrained_variable::Bool, vector::Bool)
8686
value = rand_value()
8787
if constrained_variable && vector
8888
# FIXME not supported yet
89-
@test_throws MOI.SetAttributeNotAllowed{MOI.ConstraintDualStart} MOI.set(dual, attr, ci, value)
89+
@test_throws MOI.SetAttributeNotAllowed{MOI.ConstraintDualStart} MOI.set(
90+
dual,
91+
attr,
92+
ci,
93+
value,
94+
)
9095
else
9196
MOI.set(dual, attr, ci, value)
9297
@test MOI.get(dual, attr, ci) == value

0 commit comments

Comments
 (0)