From 866c2440310906d69bd18e5673c3db8d71d596f5 Mon Sep 17 00:00:00 2001 From: Triona Doyle Date: Tue, 13 Aug 2024 10:10:49 +0100 Subject: [PATCH] remove duplicate import --- test/nondefaulte2e/suite_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/nondefaulte2e/suite_test.go b/test/nondefaulte2e/suite_test.go index 54813d413..d749cccd2 100644 --- a/test/nondefaulte2e/suite_test.go +++ b/test/nondefaulte2e/suite_test.go @@ -27,7 +27,6 @@ import ( // Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.) // to ensure that exec-entrypoint and run can make use of them. argov1alpha1api "github.com/argoproj-labs/argocd-operator/api/v1alpha1" - argoapi "github.com/argoproj-labs/argocd-operator/api/v1beta1" argov1beta1api "github.com/argoproj-labs/argocd-operator/api/v1beta1" argocdprovisioner "github.com/argoproj-labs/argocd-operator/controllers/argocd" monitoringv1 "github.com/coreos/prometheus-operator/pkg/apis/monitoring/v1" @@ -102,7 +101,6 @@ var _ = BeforeSuite(func() { Expect(err).NotTo(HaveOccurred()) Expect(routev1.AddToScheme(scheme.Scheme)).NotTo(HaveOccurred()) - Expect(argoapi.AddToScheme(scheme.Scheme)).NotTo(HaveOccurred()) Expect(monitoringv1.AddToScheme(scheme.Scheme)).NotTo(HaveOccurred()) Expect(operatorsv1.AddToScheme(scheme.Scheme)).NotTo(HaveOccurred()) Expect(operatorsv1alpha1.AddToScheme(scheme.Scheme)).NotTo(HaveOccurred())