Skip to content

Commit

Permalink
Fix name of test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
p-se committed Jul 30, 2024
1 parent a779c72 commit f05c311
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions integrationtests/gitjob/controller/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/reugn/go-quartz/quartz"

"go.uber.org/mock/gomock"
"k8s.io/client-go/kubernetes/scheme"
"k8s.io/client-go/rest"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/envtest"
"sigs.k8s.io/controller-runtime/pkg/log/zap"

"github.com/rancher/fleet/internal/cmd/controller/gitops/reconciler"
ctrlreconciler "github.com/rancher/fleet/internal/cmd/controller/reconciler"
Expand All @@ -20,13 +25,6 @@ import (
"github.com/rancher/fleet/internal/manifest"
v1alpha1 "github.com/rancher/fleet/pkg/apis/fleet.cattle.io/v1alpha1"
"github.com/rancher/fleet/pkg/git/mocks"

"k8s.io/client-go/kubernetes/scheme"
"k8s.io/client-go/rest"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/envtest"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
)

const (
Expand All @@ -46,7 +44,7 @@ var (

func TestGitJobController(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Fleet CLI Cleanup Suite")
RunSpecs(t, "Fleet GitJob Controller Suite")
}

var _ = BeforeSuite(func() {
Expand Down

0 comments on commit f05c311

Please sign in to comment.