From 776ac93f040e2dbca20bfbea9d132fc1f5689a77 Mon Sep 17 00:00:00 2001 From: Vallery Lancey Date: Fri, 1 Mar 2019 10:42:06 -0800 Subject: [PATCH] Fix mispelled variable in ingress.go after rebase --- test/e2e/upgrades/ingress.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/upgrades/ingress.go b/test/e2e/upgrades/ingress.go index 4c34dd0ff1e..c6d715d4e44 100644 --- a/test/e2e/upgrades/ingress.go +++ b/test/e2e/upgrades/ingress.go @@ -96,7 +96,7 @@ func (t *IngressUpgradeTest) Setup(f *framework.Framework) { t.ipName = fmt.Sprintf("%s-static-ip", ns.Name) t.ip = t.gceController.CreateStaticIP(t.ipName) // Create a working basic Ingress - ginko.By(fmt.Sprintf("allocated static ip %v: %v through the GCE cloud provider", t.ipName, t.ip)) + ginkgo.By(fmt.Sprintf("allocated static ip %v: %v through the GCE cloud provider", t.ipName, t.ip)) jig.CreateIngress(filepath.Join(ingress.GCEIngressManifestPath, "static-ip-2"), ns.Name, map[string]string{ ingress.IngressStaticIPKey: t.ipName, ingress.IngressAllowHTTPKey: "false",