From e6dff2fbcd9c905fac0d304fe505694f1eaf1dbc Mon Sep 17 00:00:00 2001 From: Camila Macedo Date: Sat, 26 Aug 2023 06:49:28 +0100 Subject: [PATCH] :bug: (deployimage): fix e2e tests which are using go/v3 which is deprecated. Ensure that we are using the go/v4 --- test/e2e/deployimage/plugin_cluster_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/e2e/deployimage/plugin_cluster_test.go b/test/e2e/deployimage/plugin_cluster_test.go index 9ab26fffddb..66c3fac1b45 100644 --- a/test/e2e/deployimage/plugin_cluster_test.go +++ b/test/e2e/deployimage/plugin_cluster_test.go @@ -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() { @@ -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, ) @@ -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, )