Skip to content

Commit e4ce984

Browse files
authored
[Bridges] use variable_start in Bridges.runtests (#2592)
1 parent 86d17e3 commit e4ce984

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bridges/Bridges.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ function runtests(
300300
x = MOI.get(model, MOI.ListOfVariableIndices())
301301
MOI.set(model, attr, x, fill(nothing, length(x)))
302302
Test.@test all(isnothing, MOI.get(model, attr, x))
303-
primal_start = fill(constraint_start, length(x))
303+
primal_start = fill(variable_start, length(x))
304304
MOI.set(model, attr, x, primal_start)
305305
if !isempty(x)
306306
# ≈ does not work if x is empty because the return of get is Any[]

0 commit comments

Comments
 (0)