mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 15:24:20 +00:00
1de9d7fa34
It looks like neither of these has been a problem for some time. The notification needle has not matched for a year. The akonadi needle doesn't exist any more - it was cleaned up in the 2021 needle cleanup, meaning it hadn't matched for weeks in 2021. I checked the last several months of KDE app start/stop tests and don't see any case where there was a stray notification that we missed. So I think we can just ditch this whole mechanism for now; if we have problems with these notifications again in future we can put it back. Signed-off-by: Adam Williamson <awilliam@redhat.com>
22 lines
321 B
Perl
22 lines
321 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This sets the KDE desktop background to plain black, to avoid
|
|
# needle match problems caused by transparency.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
solidify_wallpaper;
|
|
}
|
|
|
|
sub test_flags {
|
|
return {fatal => 1, milestone => 1};
|
|
}
|
|
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|