Skip to content

Commit abf7d8c

Browse files
committed
Fix format
1 parent 8f3ac42 commit abf7d8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/MOI_wrapper.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,10 +361,10 @@ function test_complements_twice()
361361
MOI.set(model, MOI.ObjectiveFunction{typeof(f)}(), f)
362362
MOI.optimize!(model)
363363
x_val = MOI.get(model, MOI.VariablePrimal(), x)
364-
@test isapprox(x_val, [0, 1, 0, 1]; atol = 1e-5)
364+
@test isapprox(x_val, [0, 1, 0, 1]; atol=1e-5)
365365
MOI.optimize!(model)
366366
x_val = MOI.get(model, MOI.VariablePrimal(), x)
367-
@test isapprox(x_val, [0, 1, 0, 1]; atol = 1e-5)
367+
@test isapprox(x_val, [0, 1, 0, 1]; atol=1e-5)
368368
return
369369
end
370370

0 commit comments

Comments
 (0)