Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/Bridges/lazy_bridge_optimizer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ function MOI.supports_constraint(
end

function MOI.supports(
::StandardSDPAModel{T},
::GeometricSDPAModel{T},
::MOI.ObjectiveFunction{
<:Union{MOI.VariableIndex,MOI.ScalarQuadraticFunction{T}},
},
Expand Down
2 changes: 1 addition & 1 deletion test/Nonlinear/Nonlinear.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ function test_scalar_nonlinear_function_parse_logic_or()
return
end

function test_scalar_nonlinear_function_parse_logic_or()
function test_scalar_nonlinear_function_parse_logic_and()
model = MOI.Utilities.Model{Float64}()
x = MOI.add_variable(model)
f = MOI.ScalarNonlinearFunction(:&&, Any[x, x])
Expand Down
4 changes: 2 additions & 2 deletions test/Utilities/constraints.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Use of this source code is governed by an MIT-style license that can be found
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.

module TestConstraints
module TestUtilitiesConstraints

using Test
import MathOptInterface as MOI
Expand Down Expand Up @@ -61,4 +61,4 @@ end

end # module

TestConstraints.runtests()
TestUtilitiesConstraints.runtests()
4 changes: 2 additions & 2 deletions test/Utilities/functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Use of this source code is governed by an MIT-style license that can be found
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.

module TestFunctions
module TestUtilitiesFunctions

using Test

Expand Down Expand Up @@ -2073,4 +2073,4 @@ end

end # module

TestFunctions.runtests()
TestUtilitiesFunctions.runtests()
4 changes: 2 additions & 2 deletions test/Utilities/sets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Use of this source code is governed by an MIT-style license that can be found
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.

module TestSets
module TestUtilitiesSets

using SparseArrays
using Test
Expand Down Expand Up @@ -227,4 +227,4 @@ end

end # module

TestSets.runtests()
TestUtilitiesSets.runtests()
2 changes: 1 addition & 1 deletion test/Utilities/test_operate!.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function _test_function(coefficients::Vector{NTuple{3,T}}) where {T}
return MOI.Utilities.operate(vcat, T, _test_function.(coefficients)...)
end

function _test_function(pair::Pair{Symbol,<:Any}) where {T}
function _test_function(pair::Pair{Symbol,<:Any})
head, arg = pair
if arg isa Vector
args = Any[_test_function(a) for a in arg]
Expand Down