Skip to content

Commit

Permalink
Merge pull request #3565 from camilamacedo86/remove-v3-e2e-test
Browse files Browse the repository at this point in the history
🌱 : (deployimage): fix e2e tests which are using go/v3 which is dep…
  • Loading branch information
k8s-ci-robot committed Aug 26, 2023
2 parents be40047 + e6dff2f commit 7a8cb07
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/e2e/deployimage/plugin_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import (
)

var _ = Describe("kubebuilder", func() {
Context("deploy image plugin 3", func() {
Context("deploy image plugin", func() {
var kbc *utils.TestContext

BeforeEach(func() {
Expand Down Expand Up @@ -82,7 +82,7 @@ var _ = Describe("kubebuilder", func() {

By("initializing a project with go/v3")
err = kbc.Init(
"--plugins", "go/v3",
"--plugins", "go/v4",
"--project-version", "3",
"--domain", kbc.Domain,
)
Expand Down Expand Up @@ -117,9 +117,9 @@ var _ = Describe("kubebuilder", func() {
It("should generate a runnable project with deploy-image/v1-alpha without options ", func() {
var err error

By("initializing a project with go/v3")
By("initializing a project with go/v4")
err = kbc.Init(
"--plugins", "go/v3",
"--plugins", "go/v4",
"--project-version", "3",
"--domain", kbc.Domain,
)
Expand Down

0 comments on commit 7a8cb07

Please sign in to comment.