1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-12-01 13:26:01 +00:00

Remove desktop_background short-circuit on F43 KDE

The kde-settings fix is now stable and in the latest compose, so
we don't need this any more.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2025-09-05 11:18:28 -07:00
parent c3b2dc4e63
commit c9f73ec073

View File

@ -13,12 +13,6 @@ sub run {
my $desktop = get_var('DESKTOP');
my $rawrel = get_var('RAWREL');
return unless ($version ne "Rawhide" && $version ne $rawrel);
# temporary for f43 branching to pass during the branch phase
# FIXME: Remove when branching has completed
if ($version eq '43' && $desktop eq 'kde') {
record_info('Short circuit', 'The background is not updated in KDE for F43');
return;
}
# KDE shows a different version of the welcome center on major upgrades,
# which breaks this test
click_lastmatch if (get_var("DESKTOP") eq "kde" && get_var("ADVISORY_OR_TASK") && check_screen "kde_ok", 5);