Skip to content

Commit 55823f4

Browse files
🐛 fix name controllers test
1 parent 9ba9d57 commit 55823f4

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

pkg/plugins/golang/v4/scaffolds/internal/templates/controllers/controller_suitetest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ var cfg *rest.Config
152152
var k8sClient client.Client
153153
var testEnv *envtest.Environment
154154
155-
func TestAPIs(t *testing.T) {
155+
func TestControllers(t *testing.T) {
156156
RegisterFailHandler(Fail)
157157
158158
RunSpecs(t, "Controller Suite")

testdata/project-v4-config/internal/controller/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var cfg *rest.Config
4141
var k8sClient client.Client
4242
var testEnv *envtest.Environment
4343

44-
func TestAPIs(t *testing.T) {
44+
func TestControllers(t *testing.T) {
4545
RegisterFailHandler(Fail)
4646

4747
RunSpecs(t, "Controller Suite")

testdata/project-v4-declarative-v1/internal/controller/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var cfg *rest.Config
4141
var k8sClient client.Client
4242
var testEnv *envtest.Environment
4343

44-
func TestAPIs(t *testing.T) {
44+
func TestControllers(t *testing.T) {
4545
RegisterFailHandler(Fail)
4646

4747
RunSpecs(t, "Controller Suite")

testdata/project-v4-multigroup/internal/controller/apps/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var cfg *rest.Config
4040
var k8sClient client.Client
4141
var testEnv *envtest.Environment
4242

43-
func TestAPIs(t *testing.T) {
43+
func TestControllers(t *testing.T) {
4444
RegisterFailHandler(Fail)
4545

4646
RunSpecs(t, "Controller Suite")

testdata/project-v4-multigroup/internal/controller/crew/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var cfg *rest.Config
4141
var k8sClient client.Client
4242
var testEnv *envtest.Environment
4343

44-
func TestAPIs(t *testing.T) {
44+
func TestControllers(t *testing.T) {
4545
RegisterFailHandler(Fail)
4646

4747
RunSpecs(t, "Controller Suite")

testdata/project-v4-multigroup/internal/controller/fiz/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var cfg *rest.Config
4141
var k8sClient client.Client
4242
var testEnv *envtest.Environment
4343

44-
func TestAPIs(t *testing.T) {
44+
func TestControllers(t *testing.T) {
4545
RegisterFailHandler(Fail)
4646

4747
RunSpecs(t, "Controller Suite")

testdata/project-v4-multigroup/internal/controller/foo.policy/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var cfg *rest.Config
4141
var k8sClient client.Client
4242
var testEnv *envtest.Environment
4343

44-
func TestAPIs(t *testing.T) {
44+
func TestControllers(t *testing.T) {
4545
RegisterFailHandler(Fail)
4646

4747
RunSpecs(t, "Controller Suite")

testdata/project-v4-multigroup/internal/controller/foo/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var cfg *rest.Config
4141
var k8sClient client.Client
4242
var testEnv *envtest.Environment
4343

44-
func TestAPIs(t *testing.T) {
44+
func TestControllers(t *testing.T) {
4545
RegisterFailHandler(Fail)
4646

4747
RunSpecs(t, "Controller Suite")

testdata/project-v4-multigroup/internal/controller/sea-creatures/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var cfg *rest.Config
4242
var k8sClient client.Client
4343
var testEnv *envtest.Environment
4444

45-
func TestAPIs(t *testing.T) {
45+
func TestControllers(t *testing.T) {
4646
RegisterFailHandler(Fail)
4747

4848
RunSpecs(t, "Controller Suite")

testdata/project-v4-multigroup/internal/controller/ship/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var cfg *rest.Config
4343
var k8sClient client.Client
4444
var testEnv *envtest.Environment
4545

46-
func TestAPIs(t *testing.T) {
46+
func TestControllers(t *testing.T) {
4747
RegisterFailHandler(Fail)
4848

4949
RunSpecs(t, "Controller Suite")

0 commit comments

Comments
 (0)