diff --git a/lib/utils.pm b/lib/utils.pm index 2ff0c066..e1611774 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -847,7 +847,7 @@ sub gnome_initial_setup { # https://fedoraproject.org//wiki/Changes/ReduceInitialSetupRedundancy # https://bugzilla.redhat.com/show_bug.cgi?id=1474787 , # except 'language' was never *really* skipped (see above) - if ($relnum < 40) { + if ($relnum < 41) { @nexts = grep { $_ ne 'keyboard' } @nexts; @nexts = grep { $_ ne 'timezone' } @nexts; } diff --git a/tests/desktop_notifications.pm b/tests/desktop_notifications.pm index 560c9d99..fbc6fd73 100644 --- a/tests/desktop_notifications.pm +++ b/tests/desktop_notifications.pm @@ -91,9 +91,9 @@ sub run { type_very_safely get_var("USER_PASSWORD", "weakpassword"); send_key 'ret'; } - elsif ($desktop eq 'gnome' && $relnum > 39) { - # since g-i-s 45~beta-3 we get a short g-i-s flow on live boot - # then the welcome tour + elsif ($desktop eq 'gnome' && $relnum > 40) { + # with https://fedoraproject.org/wiki/Changes/AnacondaWebUIforFedoraWorkstation + # we get a short g-i-s flow on live boot then the welcome tour gnome_initial_setup(live => 1, livetry => 1); handle_welcome_screen; }