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 <hchiramm@redhat.com>
This commit is contained in:
Humble Chirammal 2021-06-16 12:19:42 +05:30 committed by mergify[bot]
parent f8a08ada6d
commit 8639015a9f
2 changed files with 2 additions and 2 deletions

View File

@ -54,5 +54,5 @@ func handleFlags() {
framework.RegisterClusterFlags(flag.CommandLine)
testing.Init()
flag.Parse()
initResouces()
initResources()
}

View File

@ -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)
}