Merge pull request #41511 from tonglil/typos

Automatic merge from submit-queue (batch tested with PRs 37137, 41506, 41239, 41511, 37953)

Fix typos in e2e

**What this PR does / why we need it**: fix typos in e2e test

**Special notes for your reviewer**: none

**Release note**:

```release-note
NONE
```
pull/6/head
Kubernetes Submit Queue 2017-02-15 20:05:11 -08:00 committed by GitHub
commit b188cb1e8e
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ var _ = framework.KubeDescribe("Loadbalancing: L7", func() {
} }
}) })
It("shoud create ingress with given static-ip", func() { It("should create ingress with given static-ip", func() {
// ip released when the rest of lb resources are deleted in cleanupGCE // ip released when the rest of lb resources are deleted in cleanupGCE
ip := gceController.createStaticIP(ns) ip := gceController.createStaticIP(ns)
By(fmt.Sprintf("allocated static ip %v: %v through the GCE cloud provider", ns, ip)) By(fmt.Sprintf("allocated static ip %v: %v through the GCE cloud provider", ns, ip))

View File

@ -682,7 +682,7 @@ func (cont *GCEIngressController) createStaticIP(name string) string {
return ip.Address return ip.Address
} }
// deleteStaticIPs delets all static-ips allocated through calls to // deleteStaticIPs deletes all static-ips allocated through calls to
// createStaticIP. // createStaticIP.
func (cont *GCEIngressController) deleteStaticIPs() error { func (cont *GCEIngressController) deleteStaticIPs() error {
if cont.staticIPName != "" { if cont.staticIPName != "" {