From 45a1a3a36b6c0e3e49f67d6438d7a82874e15aa0 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 24 Mar 2022 09:01:22 -0700 Subject: [PATCH] Wait *longer* to reach hub after setting root password This can actually take a bit of time, it seems, especially with debug kernels. Let's give it a minute. Signed-off-by: Adam Williamson --- tests/_do_install_and_reboot.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/_do_install_and_reboot.pm b/tests/_do_install_and_reboot.pm index e469e36d..36c335b9 100644 --- a/tests/_do_install_and_reboot.pm +++ b/tests/_do_install_and_reboot.pm @@ -36,7 +36,7 @@ sub _set_root_password { } assert_and_click "anaconda_spoke_done"; # exiting this screen can take a while, so check for the hub - assert_screen "anaconda_main_hub"; + assert_screen "anaconda_main_hub", 60; } }