diff --git a/internal/distro/fedora/distro_test.go b/internal/distro/fedora/distro_test.go index 93f493122..9e73c41d4 100644 --- a/internal/distro/fedora/distro_test.go +++ b/internal/distro/fedora/distro_test.go @@ -786,24 +786,3 @@ func TestDistro_CustomUsrPartitionNotLargeEnough(t *testing.T) { } } } - -func TestIotInstallerWithoutOStreeRefs(t *testing.T) { - // Regression test for https://github.com/osbuild/osbuild-composer/issues/3125 - - // TODO: Remove when the ugly workaround is gone - d := fedora.NewF38() - arch, err := d.GetArch("x86_64") - require.NoError(t, err) - - imgType, err := arch.GetImageType("iot-installer") - require.NoError(t, err) - - bp := blueprint.Blueprint{ - Name: "fish", - } - err = bp.Initialize() - require.NoError(t, err) - - sets := imgType.PackageSets(bp, distro.ImageOptions{}, nil) - require.NotZero(t, len(sets)) -}