diff --git a/internal/cloudapi/v2/compose_test.go b/internal/cloudapi/v2/compose_test.go index 08458d60d..f7f8dc7b7 100644 --- a/internal/cloudapi/v2/compose_test.go +++ b/internal/cloudapi/v2/compose_test.go @@ -674,7 +674,13 @@ func TestGetImageRequests_ImageTypeConversion(t *testing.T) { }, { requestedImageType: ImageTypesGcpRhui, - requestedDistros: []string{rhel8, rhel9}, + requestedDistros: []string{rhel9}, + expectedImageType: "gce", + expectedTargetName: target.TargetNameGCP, + }, + { + requestedImageType: ImageTypesGcpRhui, + requestedDistros: []string{rhel8}, expectedImageType: "gce-rhui", expectedTargetName: target.TargetNameGCP, },