From 8639015a9f18b98e865aacae768bd4df8320432c Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Wed, 16 Jun 2021 12:19:42 +0530 Subject: [PATCH] cleanup: correct initResources() function name typo This function was wrongly declared with name initResouces() in e2e utils package and this patch address the typo in the name Signed-off-by: Humble Chirammal --- e2e/e2e_test.go | 2 +- e2e/utils.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/e2e_test.go b/e2e/e2e_test.go index 9582fc44f..26cb63109 100644 --- a/e2e/e2e_test.go +++ b/e2e/e2e_test.go @@ -54,5 +54,5 @@ func handleFlags() { framework.RegisterClusterFlags(flag.CommandLine) testing.Init() flag.Parse() - initResouces() + initResources() } diff --git a/e2e/utils.go b/e2e/utils.go index a36873a0e..bd03c96da 100644 --- a/e2e/utils.go +++ b/e2e/utils.go @@ -65,7 +65,7 @@ var ( poll = 2 * time.Second ) -func initResouces() { +func initResources() { ns = fmt.Sprintf("--namespace=%v", cephCSINamespace) vaultAddr = fmt.Sprintf("http://vault.%s.svc.cluster.local:8200", cephCSINamespace) }