Skip to content

Commit 8d7f215

Browse files
committed
fix tests
1 parent 4659b27 commit 8d7f215

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

test/feasibility.jl

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,7 @@ function test_only_bounds()
5252
)
5353
@test isempty(report)
5454

55-
buf = IOBuffer()
56-
Base.show(buf, report)
57-
str = String(take!(buf))
58-
@test str == "Feasibility analysis found 0 issues"
55+
return
5956
end
6057

6158
function test_no_lb()
@@ -196,6 +193,11 @@ function test_analyse_mip()
196193

197194
ModelAnalyzer.summarize(data)
198195

196+
buf = IOBuffer()
197+
Base.show(buf, data)
198+
str = String(take!(buf))
199+
@test str == "Feasibility analysis found 0 issues"
200+
199201
return
200202
end
201203

0 commit comments

Comments
 (0)