Skip to content

Commit be2ddd4

Browse files
authored
Update fallback URL in runtests.jl
1 parent 080e215 commit be2ddd4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function MosekOptimizerWithFallback()
6060
MOI.set(
6161
optimizer,
6262
MOI.RawOptimizerAttribute("fallback"),
63-
"mosek://solve.mosek.com:30080",
63+
"http://solve.mosek.com:30080",
6464
)
6565
MOI.set(optimizer, MOI.Silent(), true)
6666
return optimizer
@@ -706,7 +706,7 @@ end
706706
function test_get_fallback()
707707
model = MosekOptimizerWithFallback()
708708
@test MOI.get(model, MOI.RawOptimizerAttribute("fallback")) ==
709-
"mosek://solve.mosek.com:30080"
709+
"http://solve.mosek.com:30080"
710710
return
711711
end
712712

0 commit comments

Comments
 (0)