From bace917ef6a70be6e8a966ead675b964f36cc7a6 Mon Sep 17 00:00:00 2001 From: Cindy Zhang Date: Fri, 24 Mar 2023 17:21:30 -0700 Subject: [PATCH] fix logs checking assert statement Signed-off-by: Cindy Zhang --- python/ray/tests/test_gcs_ha_e2e.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/tests/test_gcs_ha_e2e.py b/python/ray/tests/test_gcs_ha_e2e.py index 9035e7f68905..8b12e7a91e5d 100644 --- a/python/ray/tests/test_gcs_ha_e2e.py +++ b/python/ray/tests/test_gcs_ha_e2e.py @@ -171,7 +171,7 @@ def test_ray_server_basic(docker_cluster): head, worker = docker_cluster output = worker.exec_run(cmd=f"python -c '{scripts.format(num_replicas=1)}'") assert output.exit_code == 0 - assert b"Adding 1 replica to deployment 'Counter'." in output.output + assert b"Adding 1 replica to deployment Counter." in output.output # somehow this is not working and the port is not exposed to the host. # worker_cli = worker.client() # print(worker_cli.request("GET", "/api/incr"))