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
12 changes: 6 additions & 6 deletions src/Test/test_conic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6768,15 +6768,15 @@ function setup_test(
end

"""
test_conic_SecondOrderCone_negative_post_bound_ii(
test_conic_SecondOrderCone_negative_post_bound_2(
model::MOI.ModelLike,
config::Config{T},
) where {T}

Test a second order cosnstraint with an epigraph variable >= -M and the bound
constraints added via `add_constraint`.
"""
function test_conic_SecondOrderCone_negative_post_bound_ii(
function test_conic_SecondOrderCone_negative_post_bound_2(
model::MOI.ModelLike,
config::Config{T},
) where {T}
Expand Down Expand Up @@ -6811,7 +6811,7 @@ function test_conic_SecondOrderCone_negative_post_bound_ii(
end

function setup_test(
::typeof(test_conic_SecondOrderCone_negative_post_bound_ii),
::typeof(test_conic_SecondOrderCone_negative_post_bound_2),
model::MOIU.MockOptimizer,
::Config,
)
Expand All @@ -6828,15 +6828,15 @@ function setup_test(
end

"""
test_conic_SecondOrderCone_negative_post_bound_iii(
test_conic_SecondOrderCone_negative_post_bound_3(
model::MOI.ModelLike,
config::Config{T},
) where {T}

Test a second order cosnstraint with an epigraph variable >= -M and the bound
constraints added via `add_constraints`.
"""
function test_conic_SecondOrderCone_negative_post_bound_iii(
function test_conic_SecondOrderCone_negative_post_bound_3(
model::MOI.ModelLike,
config::Config{T},
) where {T}
Expand Down Expand Up @@ -6872,7 +6872,7 @@ function test_conic_SecondOrderCone_negative_post_bound_iii(
end

function setup_test(
::typeof(test_conic_SecondOrderCone_negative_post_bound_iii),
::typeof(test_conic_SecondOrderCone_negative_post_bound_3),
model::MOIU.MockOptimizer,
::Config,
)
Expand Down
6 changes: 3 additions & 3 deletions src/Test/test_solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1402,12 +1402,12 @@ function setup_test(
end

"""
test_solve_conflict_zeroone_ii(model::MOI.ModelLike, config::Config)
test_solve_conflict_zeroone_2(model::MOI.ModelLike, config::Config)

Test the ConflictStatus API when an integrality is in the conflict.
In this test, integrality is the conflict and no the upper bound == 1.
"""
function test_solve_conflict_zeroone_ii(
function test_solve_conflict_zeroone_2(
model::MOI.ModelLike,
config::Config{T},
) where {T}
Expand Down Expand Up @@ -1437,7 +1437,7 @@ function test_solve_conflict_zeroone_ii(
end

function setup_test(
::typeof(test_solve_conflict_zeroone_ii),
::typeof(test_solve_conflict_zeroone_2),
model::MOIU.MockOptimizer,
::Config,
)
Expand Down
4 changes: 2 additions & 2 deletions test/Utilities/CleverDicts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function test_iterate()
return
end

function test_iterate_ii()
function test_iterate_2()
d = CleverDicts.CleverDict{MathOptInterface.VariableIndex,String}()
key = CleverDicts.add_item(d, "first")
key2 = CleverDicts.add_item(d, "second")
Expand Down Expand Up @@ -184,7 +184,7 @@ function test_iterate_ii()
return
end

function test_iterate_iii()
function test_iterate_3()
d = CleverDicts.CleverDict{MathOptInterface.VariableIndex,String}()
y = 0
for (k, v) in d
Expand Down