Skip to content

Commit d151ce6

Browse files
committed
Fix formatting
1 parent 34deb44 commit d151ce6

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Test/test_modification.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,6 +1034,5 @@ function test_modification_scalarquadraticcoefficientchange(
10341034
@test MOI.get(model, attr) T(1) * x * x + T(2) * x * y
10351035
MOI.modify(model, attr, MOI.ScalarQuadraticCoefficientChange(x, y, T(4)))
10361036
@test MOI.get(model, attr) T(1) * x * x + T(4) * x * y
1037-
10381037
return
10391038
end

src/Utilities/functions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1411,7 +1411,7 @@ function modify_function!(
14111411
term = MOI.ScalarQuadraticTerm(
14121412
change.new_coefficient,
14131413
change.variable_1,
1414-
change.variable_2
1414+
change.variable_2,
14151415
)
14161416
push!(f.quadratic_terms, term)
14171417
return f

0 commit comments

Comments
 (0)