From 05674c219f7f2ca6a1920de5566da030a022ba50 Mon Sep 17 00:00:00 2001 From: Mitchell Stern Date: Wed, 15 Jan 2020 21:16:36 -0800 Subject: [PATCH] Accept any port in test_get_webui in test_webui.py (#6804) --- python/ray/tests/test_webui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/tests/test_webui.py b/python/ray/tests/test_webui.py index 3e3e3a8b7..2e284650d 100644 --- a/python/ray/tests/test_webui.py +++ b/python/ray/tests/test_webui.py @@ -15,7 +15,7 @@ def test_get_webui(shutdown_only): webui_url = addresses["webui_url"] assert ray.get_webui_url() == webui_url - assert re.match(r"^(localhost|\d+\.\d+\.\d+\.\d+):8265$", webui_url) + assert re.match(r"^(localhost|\d+\.\d+\.\d+\.\d+):\d+$", webui_url) start_time = time.time() while True: