Skip to content

Commit e6dff2f

Browse files
🐛 (deployimage): fix e2e tests which are using go/v3 which is deprecated. Ensure that we are using the go/v4
1 parent be40047 commit e6dff2f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/e2e/deployimage/plugin_cluster_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
)
3939

4040
var _ = Describe("kubebuilder", func() {
41-
Context("deploy image plugin 3", func() {
41+
Context("deploy image plugin", func() {
4242
var kbc *utils.TestContext
4343

4444
BeforeEach(func() {
@@ -82,7 +82,7 @@ var _ = Describe("kubebuilder", func() {
8282

8383
By("initializing a project with go/v3")
8484
err = kbc.Init(
85-
"--plugins", "go/v3",
85+
"--plugins", "go/v4",
8686
"--project-version", "3",
8787
"--domain", kbc.Domain,
8888
)
@@ -117,9 +117,9 @@ var _ = Describe("kubebuilder", func() {
117117
It("should generate a runnable project with deploy-image/v1-alpha without options ", func() {
118118
var err error
119119

120-
By("initializing a project with go/v3")
120+
By("initializing a project with go/v4")
121121
err = kbc.Init(
122-
"--plugins", "go/v3",
122+
"--plugins", "go/v4",
123123
"--project-version", "3",
124124
"--domain", kbc.Domain,
125125
)

0 commit comments

Comments
 (0)