From de1150385d53e02f70ca3c500042dfcae90fbfbd Mon Sep 17 00:00:00 2001 From: zhengjiajin <393926893@qq.com> Date: Mon, 15 May 2017 12:07:36 +0800 Subject: [PATCH] fix typo --- test/e2e_node/remote/node_conformance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e_node/remote/node_conformance.go b/test/e2e_node/remote/node_conformance.go index fc241c790c3..750f8447a9c 100644 --- a/test/e2e_node/remote/node_conformance.go +++ b/test/e2e_node/remote/node_conformance.go @@ -223,7 +223,7 @@ func stopKubelet(host, workspace string) error { glog.Info("Wait for kubelet launcher to stop") stopped := false for start := time.Now(); time.Since(start) < kubeletStopGracePeriod; time.Sleep(time.Second) { - // Check whehther the process is still running. + // Check whether the process is still running. output, err := SSH(host, "pidof", conformanceTestBinary, "||", "true") if err != nil { return fmt.Errorf("failed to check kubelet stopping: error - %v output -%q",