Skip desktop background check for Rawhide update tests

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2022-04-26 16:12:55 -07:00
parent c41c55cefe
commit 12f423f5a8
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,8 @@ sub run {
# this for Rawhide as Rawhide doesn't have its own backgrounds and we # this for Rawhide as Rawhide doesn't have its own backgrounds and we
# don't have any requirement for what background Rawhide uses. # don't have any requirement for what background Rawhide uses.
my $version = get_var('VERSION'); my $version = get_var('VERSION');
assert_screen "${version}_background" if ($version ne "Rawhide"); my $rawrel = get_var('RAWREL');
assert_screen "${version}_background" if ($version ne "Rawhide" && $version ne $rawrel);
} }
sub test_flags { sub test_flags {