From 4d24f8c3fcc4d6827cfeb385778f474420fb4c31 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Wed, 3 Apr 2024 17:51:02 +0300 Subject: [PATCH] ci: change listen ports in vweb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v for both vweb and x.vweb, to reduce probability of network errors --- .../vweb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v | 2 +- .../vweb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/vweb/tests/vweb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v b/vlib/vweb/tests/vweb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v index 353167c6f8..9bebaa3a52 100644 --- a/vlib/vweb/tests/vweb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v +++ b/vlib/vweb/tests/vweb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v @@ -6,7 +6,7 @@ import net.http const vexe = os.getenv('VEXE') const vroot = os.dir(vexe) -const port = 28871 +const port = 38871 const welcome_text = 'Welcome to our simple vweb server' // Use a known good http client like `curl` (if it exists): 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 876cb4ebba..c820e6d3a3 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 @@ -6,7 +6,7 @@ import net.http const vexe = os.getenv('VEXE') const vroot = os.dir(vexe) -const port = 28872 +const port = 48872 const welcome_text = 'Welcome to our simple vweb server' // Use a known good http client like `curl` (if it exists):