From 777d27efbfe956ffa137bdc21eec69e571690d2f Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Fri, 17 Feb 2023 16:20:10 +0100 Subject: [PATCH] distro/test: remove RHEL 7 exception from PipelineNames test RHEL 7 rewrite makes this exception obsolete. --- internal/distro/distro_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/internal/distro/distro_test.go b/internal/distro/distro_test.go index d5bb528c5..5e1412d0e 100644 --- a/internal/distro/distro_test.go +++ b/internal/distro/distro_test.go @@ -212,12 +212,6 @@ func TestImageTypePipelineNames(t *testing.T) { packageSets[plName] = minimalPackageSet } - if distroName == "rhel-7" { - // add one more under "packages" for rhel-7 - // TODO: this will be removed with the RHEL 7 rewrite - packageSets["packages"] = minimalPackageSet - } - m, err := imageType.Manifest(bp.Customizations, options, repos, packageSets, containers, seed) require.NoError(err) pm := new(manifest)