We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e077c47 commit 3123273Copy full SHA for 3123273
1 file changed
test/Utilities/test_parser.jl
@@ -403,7 +403,9 @@ end
403
struct Set2175 <: MOI.AbstractScalarSet end
404
405
function test_parse_external_set_constraint()
406
- error(join(String.(propertynames(Main))), " <> ")
+ if Sys.iswindows()
407
+ return # See #2932
408
+ end
409
model = MOI.Utilities.UniversalFallback(MOI.Utilities.Model{Float64}())
410
MOI.Utilities.loadfromstring!(model, "variables: x\nx in $(Set2175())")
411
constraints = MOI.get(model, MOI.ListOfConstraintTypesPresent())
@@ -412,6 +414,9 @@ function test_parse_external_set_constraint()
412
414
end
413
415
416
function test_parse_external_set_constrained_variable()
417
418
419
420
421
MOI.Utilities.loadfromstring!(
422
model,
0 commit comments