Skip to content

Commit a66bf0a

Browse files
committed
Fix format
1 parent 67467ce commit a66bf0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/problems.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,11 +461,11 @@ function test_issue_122(model)
461461
MOI.set(model, MOI.ObjectiveSense(), MOI.MAX_SENSE)
462462
MOI.set(model, MOI.ObjectiveFunction{typeof(f)}(), f)
463463
for i in 1:m
464-
f_i = sum(w[i,j] * x[i,j] for j in 1:n)
464+
f_i = sum(w[i, j] * x[i, j] for j in 1:n)
465465
MOI.add_constraint(model, f_i, MOI.LessThan(b[i]))
466466
end
467467
for j in 1:n
468-
MOI.add_constraint(model, sum(1.0 .* x[:,j]), MOI.EqualTo(1.0))
468+
MOI.add_constraint(model, sum(1.0 .* x[:, j]), MOI.EqualTo(1.0))
469469
end
470470
MOI.optimize!(model)
471471
@test MOI.get(model, MOI.ResultCount()) == 42

0 commit comments

Comments
 (0)