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 629d7f5 commit cb32e4dCopy full SHA for cb32e4d
test/FileFormats/MOF/MOF.jl
@@ -114,7 +114,7 @@ function test_HS071()
114
MOI.set(model, MOI.ObjectiveSense(), MOI.MIN_SENSE)
115
MOI.write_to_file(model, TEST_MOF_FILE)
116
target = read(joinpath(@__DIR__, "nlp.mof.json"), String)
117
- target = replace(target, '\r' => "", ' ' => "", '\n' => "")
+ target = replace(target, r"\s" => "")
118
@test read(TEST_MOF_FILE, String) == target
119
_validate(TEST_MOF_FILE)
120
return
0 commit comments