Skip to content

Commit a9266f7

Browse files
committed
Fix format
1 parent abbf63d commit a9266f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: test/moi_tests.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -1967,7 +1967,8 @@ function test_constrained_variables()
19671967
@test MOI.supports_add_constrained_variables(optimizer, typeof(set))
19681968
x, c = MOI.add_constrained_variables(optimizer, set)
19691969
@test c isa MOI.ConstraintIndex{MOI.VectorOfVariables,typeof(set)}
1970-
@test MOI.get(optimizer, MOI.ConstraintFunction(), c) MOI.VectorOfVariables(x)
1970+
@test MOI.get(optimizer, MOI.ConstraintFunction(), c)
1971+
MOI.VectorOfVariables(x)
19711972
@test MOI.get(optimizer, MOI.ConstraintSet(), c) == set
19721973
@test MOI.supports(optimizer, MOI.VariableName(), eltype(x))
19731974
MOI.set(optimizer, MOI.VariableName(), x[1], "vname")

0 commit comments

Comments
 (0)