Skip to content

Commit 4172947

Browse files
committed
Fix formatting
1 parent aefd76a commit 4172947

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/test_model.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,10 @@ function test_ideal_point()
182182
MOI.add_constraint(model, x[2], MOI.LessThan(3.0))
183183
MOI.add_constraint(model, 3.0 * x[1] - 1.0 * x[2], MOI.LessThan(6.0))
184184
MOI.set(model, MOI.ObjectiveSense(), MOI.MIN_SENSE)
185-
f = MOI.Utilities.vectorize([3.0 * x[1] + x[2], -1.0 * x[1] - 2.0 * x[2]])
185+
f = MOI.Utilities.vectorize([
186+
3.0 * x[1] + x[2],
187+
-1.0 * x[1] - 2.0 * x[2]
188+
])
186189
MOI.set(model, MOI.ObjectiveFunction{typeof(f)}(), f)
187190
@test MOI.supports(model, MOA.ComputeIdealPoint())
188191
@test MOI.get(model, MOA.ComputeIdealPoint())

0 commit comments

Comments
 (0)