We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d65e971 commit 56c32f4Copy full SHA for 56c32f4
src/Bridges/Bridges.jl
@@ -178,7 +178,7 @@ function _test_structural_identical(
178
Test.@test (F, S) in b_constraint_types || MOI.get(a, attr) == 0
179
end
180
for (F, S) in b_constraint_types
181
- @test haskey(constraints, (F, S))
+ Test.@test haskey(constraints, (F, S))
182
# Check that the same number of constraints are present
183
attr = MOI.NumberOfConstraints{F,S}()
184
Test.@test MOI.get(a, attr) == MOI.get(b, attr)
@@ -396,7 +396,7 @@ function _test_delete(Bridge, model, inner)
396
MOI.delete.(model, MOI.get(model, MOI.ListOfConstraintIndices{F,S}()))
397
398
# * So now there should be no constraints in the problem
399
- @test isempty(MOI.get(inner, MOI.ListOfConstraintTypesPresent()))
+ Test.@test isempty(MOI.get(inner, MOI.ListOfConstraintTypesPresent()))
400
# * And there should be the same number of variables
401
attr = MOI.NumberOfVariables()
402
Test.@test MOI.get(inner, attr) == MOI.get(model, attr)
0 commit comments