@@ -324,7 +324,7 @@ def test_cluster_uris(mocker):
324324 )
325325 assert (
326326 cluster .cluster_dashboard_uri ()
327- == "Dashboard not available yet, have you run cluster.apply()?"
327+ == "Dashboard not available yet, have you run cluster.apply()? Run cluster.details() to check if it's ready. "
328328 )
329329
330330 mocker .patch (
@@ -538,7 +538,7 @@ def test_wait_ready(mocker, capsys):
538538
539539 captured = capsys .readouterr ()
540540 assert (
541- "WARNING: Current cluster status is unknown, have you run cluster.apply() yet?"
541+ "WARNING: Current cluster status is unknown, have you run cluster.apply() yet? Run cluster.details() to check if it's ready. "
542542 in captured .out
543543 )
544544 mocker .patch (
@@ -571,7 +571,7 @@ def test_list_queue_appwrappers(mocker, capsys):
571571 captured = capsys .readouterr ()
572572 assert captured .out == (
573573 "╭──────────────────────────────────────────────────────────────────────────────╮\n "
574- "│ No resources found, have you run cluster.apply() yet? │\n "
574+ "│ No resources found, have you run cluster.apply() yet? Run cluster.details() to check if it's ready. │\n "
575575 "╰──────────────────────────────────────────────────────────────────────────────╯\n "
576576 )
577577 mocker .patch (
@@ -616,7 +616,7 @@ def test_list_queue_rayclusters(mocker, capsys):
616616 captured = capsys .readouterr ()
617617 assert captured .out == (
618618 "╭──────────────────────────────────────────────────────────────────────────────╮\n "
619- "│ No resources found, have you run cluster.apply() yet? │\n "
619+ "│ No resources found, have you run cluster.apply() yet? Run cluster.details() to check if it's ready. │\n "
620620 "╰──────────────────────────────────────────────────────────────────────────────╯\n "
621621 )
622622 mocker .patch (
@@ -658,7 +658,7 @@ def test_list_clusters(mocker, capsys):
658658 captured = capsys .readouterr ()
659659 assert captured .out == (
660660 "╭──────────────────────────────────────────────────────────────────────────────╮\n "
661- "│ No resources found, have you run cluster.apply() yet? │\n "
661+ "│ No resources found, have you run cluster.apply() yet? Run cluster.details() to check if it's ready. │\n "
662662 "╰──────────────────────────────────────────────────────────────────────────────╯\n "
663663 )
664664 mocker .patch (
0 commit comments