From 880bc477a04909cca44c1d37b471c1815d508362 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 5 May 2016 16:41:08 -0700 Subject: [PATCH] fix mistake: graphical_login still time should stay 30 secs I didn't mean to drop it to 15, only meant to extend the timeout to 90. --- tests/upgrade_preinstall.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/upgrade_preinstall.pm b/tests/upgrade_preinstall.pm index 6e04247a..43e53976 100644 --- a/tests/upgrade_preinstall.pm +++ b/tests/upgrade_preinstall.pm @@ -7,7 +7,7 @@ sub run { # wait for either graphical or text login if (get_var('DESKTOP')) { - $self->boot_to_login_screen("graphical_login", 15, 90); # DM takes time to load + $self->boot_to_login_screen("graphical_login", 30, 90); # DM takes time to load } else { $self->boot_to_login_screen(); } @@ -23,7 +23,7 @@ sub run { script_run "reboot"; if (get_var('DESKTOP')) { - $self->boot_to_login_screen("graphical_login", 15, 90); # DM takes time to load + $self->boot_to_login_screen("graphical_login", 30, 90); # DM takes time to load } else { $self->boot_to_login_screen(); }