Skip to content

Commit 7373703

Browse files
committed
Update
1 parent 626618c commit 7373703

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

test/runtests.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1161,7 +1161,11 @@ function test_time_limit_interrupt()
11611161
F, S = MOI.ScalarAffineFunction{Float64}, MOI.EqualTo{Float64}
11621162
# We've set N such that it cannot find the full IIS in the time
11631163
# allowed.
1164-
@test MOI.get(iis, MOI.NumberOfConstraints{F,S}()) > 8
1164+
if N < 16
1165+
@test MOI.get(iis, MOI.NumberOfConstraints{F,S}()) > 8
1166+
else
1167+
@test MOI.get(iis, MOI.NumberOfConstraints{F,S}()) >= 8
1168+
end
11651169
end
11661170
end
11671171
return

0 commit comments

Comments
 (0)