diff --git a/vlib/x/vweb/sse/sse_test.v b/vlib/x/vweb/sse/sse_test.v index cc56d0dbf4..f2b00563d9 100644 --- a/vlib/x/vweb/sse/sse_test.v +++ b/vlib/x/vweb/sse/sse_test.v @@ -4,7 +4,7 @@ import x.vweb.sse import time import net.http -const port = 13008 +const port = 23008 const localserver = 'http://127.0.0.1:${port}' const exit_after = time.second * 10 diff --git a/vlib/x/vweb/tests/controller_test.v b/vlib/x/vweb/tests/controller_test.v index a0736ff336..3d20dfbcef 100644 --- a/vlib/x/vweb/tests/controller_test.v +++ b/vlib/x/vweb/tests/controller_test.v @@ -3,7 +3,7 @@ import time import os import net.http -const port = 13006 +const port = 23006 const localserver = 'http://127.0.0.1:${port}' diff --git a/vlib/x/vweb/tests/cors_test.v b/vlib/x/vweb/tests/cors_test.v index 51690293d8..95a9308828 100644 --- a/vlib/x/vweb/tests/cors_test.v +++ b/vlib/x/vweb/tests/cors_test.v @@ -3,7 +3,7 @@ import net.http import os import time -const port = 13012 +const port = 23012 const localserver = 'http://localhost:${port}' const exit_after = time.second * 10 const allowed_origin = 'https://vlang.io' diff --git a/vlib/x/vweb/tests/large_payload_test.v b/vlib/x/vweb/tests/large_payload_test.v index f187952f4b..a38ba34f45 100644 --- a/vlib/x/vweb/tests/large_payload_test.v +++ b/vlib/x/vweb/tests/large_payload_test.v @@ -5,7 +5,7 @@ import net.http import time import os -const port = 13002 +const port = 23002 const localserver = 'http://127.0.0.1:${port}' diff --git a/vlib/x/vweb/tests/middleware_test.v b/vlib/x/vweb/tests/middleware_test.v index 6fc97e398f..9ee0ba9c12 100644 --- a/vlib/x/vweb/tests/middleware_test.v +++ b/vlib/x/vweb/tests/middleware_test.v @@ -3,7 +3,7 @@ import net.http import os import time -const port = 13001 +const port = 23001 const localserver = 'http://127.0.0.1:${port}' diff --git a/vlib/x/vweb/tests/persistent_connection_test.v b/vlib/x/vweb/tests/persistent_connection_test.v index 5271de3ee7..ae1e431b85 100644 --- a/vlib/x/vweb/tests/persistent_connection_test.v +++ b/vlib/x/vweb/tests/persistent_connection_test.v @@ -6,7 +6,7 @@ import time import x.vweb const exit_after = time.second * 10 -const port = 13009 +const port = 23009 const localserver = 'localhost:${port}' const tcp_r_timeout = 2 * time.second const tcp_w_timeout = 2 * time.second diff --git a/vlib/x/vweb/tests/static_handler_test.v b/vlib/x/vweb/tests/static_handler_test.v index 663aee2e9d..27fb5ee4c1 100644 --- a/vlib/x/vweb/tests/static_handler_test.v +++ b/vlib/x/vweb/tests/static_handler_test.v @@ -3,7 +3,7 @@ import net.http import os import time -const port = 13003 +const port = 23003 const localserver = 'http://127.0.0.1:${port}' diff --git a/vlib/x/vweb/tests/vweb_app_test.v b/vlib/x/vweb/tests/vweb_app_test.v index b6d5cb4cf0..4355e842db 100644 --- a/vlib/x/vweb/tests/vweb_app_test.v +++ b/vlib/x/vweb/tests/vweb_app_test.v @@ -2,7 +2,7 @@ import x.vweb import time import db.sqlite -const port = 13004 +const port = 23004 pub struct Context { vweb.Context diff --git a/vlib/x/vweb/tests/vweb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v b/vlib/x/vweb/tests/vweb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v index 59577413fb..3b820dc9bf 100644 --- a/vlib/x/vweb/tests/vweb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v +++ b/vlib/x/vweb/tests/vweb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v @@ -8,7 +8,7 @@ import net.http const vexe = os.getenv('VEXE') const vroot = os.dir(vexe) -const port = 48872 +const port = 23013 const welcome_text = 'Welcome to our simple vweb server' // Use a known good http client like `curl` (if it exists):