diff --git a/tests/rpmostree_rebase.pm b/tests/rpmostree_rebase.pm index d00de387..16791b25 100644 --- a/tests/rpmostree_rebase.pm +++ b/tests/rpmostree_rebase.pm @@ -33,12 +33,21 @@ sub run { my $rebase; my $target; if ($current =~ "iot") { - $rebase = $current =~ "stable" ? "devel" : "stable"; + # previously we did this: + #$rebase = $current =~ "stable" ? "devel" : "stable"; + # but we cannot rebase from F39+ to 38 due to + # https://github.com/fedora-silverblue/issue-tracker/issues/470 + $rebase = "40" if ($rebase eq "38"); # on update tests, just rebase to the 'official' ref for the # release, as opposed to the custom ref we used when building; # this should be more reliable than a different release