From 95de85b33a7b20f9b666579eded4872d36b102b8 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 7 Feb 2023 10:02:01 -0800 Subject: [PATCH] Adjust a wait_still_screen not to time out on a flashing cursor Signed-off-by: Adam Williamson --- lib/utils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.pm b/lib/utils.pm index e1a40ee6..e30ba6ac 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -87,7 +87,7 @@ sub boot_to_login_screen { } assert_screen "login_screen", $args{timeout}; if (match_has_tag "graphical_login") { - wait_still_screen 10, 30; + wait_still_screen(timeout => 30, stilltime => 10, similarity_level => 38); assert_screen "login_screen"; } }