Skip to content

Commit

Permalink
fix for missing notifications CRD in test code
Browse files Browse the repository at this point in the history
  • Loading branch information
trdoyle81 committed Jul 25, 2024
1 parent 9263278 commit 5af83f0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/e2e/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ 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.
argoapi "github.com/argoproj-labs/argocd-operator/api/v1beta1"
argov1alpha1api "github.com/argoproj-labs/argocd-operator/api/v1alpha1"
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"
. "github.com/onsi/ginkgo"
Expand Down Expand Up @@ -117,7 +118,8 @@ var _ = BeforeSuite(func() {
Expect(err).NotTo(HaveOccurred())

Expect(routev1.AddToScheme(scheme.Scheme)).NotTo(HaveOccurred())
Expect(argoapi.AddToScheme(scheme.Scheme)).NotTo(HaveOccurred())
Expect(argov1alpha1api.AddToScheme(scheme.Scheme)).NotTo(HaveOccurred())
Expect(argov1beta1api.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())
Expand Down

0 comments on commit 5af83f0

Please sign in to comment.