Skip to content

Commit

Permalink
Use variable_start in Bridges.runtests
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat committed Dec 12, 2024
1 parent 86d17e3 commit 526b18b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bridges/Bridges.jl
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ function runtests(
x = MOI.get(model, MOI.ListOfVariableIndices())
MOI.set(model, attr, x, fill(nothing, length(x)))
Test.@test all(isnothing, MOI.get(model, attr, x))
primal_start = fill(constraint_start, length(x))
primal_start = fill(variable_start, length(x))

Check warning on line 303 in src/Bridges/Bridges.jl

View check run for this annotation

Codecov / codecov/patch

src/Bridges/Bridges.jl#L303

Added line #L303 was not covered by tests
MOI.set(model, attr, x, primal_start)
if !isempty(x)
# ≈ does not work if x is empty because the return of get is Any[]
Expand Down

0 comments on commit 526b18b

Please sign in to comment.