diff --git a/test/e2e/common/container_probe.go b/test/e2e/common/container_probe.go index e34de694ce1..d8a8711568a 100644 --- a/test/e2e/common/container_probe.go +++ b/test/e2e/common/container_probe.go @@ -110,7 +110,7 @@ var _ = framework.KubeDescribe("Probing container", func() { /* Release : v1.9 Testname: Pod liveness probe, using local file, restart - Description: Create a Pod with liveness probe that that uses ExecAction handler to cat /temp/health file. The Container deletes the file /temp/health after 10 second, triggering liveness probe to fail. The Pod MUST now be killed and restarted incrementing restart count to 1. + Description: Create a Pod with liveness probe that uses ExecAction handler to cat /temp/health file. The Container deletes the file /temp/health after 10 second, triggering liveness probe to fail. The Pod MUST now be killed and restarted incrementing restart count to 1. */ framework.ConformanceIt("should be restarted with a exec \"cat /tmp/health\" liveness probe [NodeConformance]", func() { runLivenessTest(f, &v1.Pod{ diff --git a/test/e2e/framework/framework.go b/test/e2e/framework/framework.go index 495dab8592e..0c3be0115ef 100644 --- a/test/e2e/framework/framework.go +++ b/test/e2e/framework/framework.go @@ -356,7 +356,7 @@ func (f *Framework) AfterEach() { // Print events if the test failed. if CurrentGinkgoTestDescription().Failed && TestContext.DumpLogsOnFailure { - // Pass both unversioned client and and versioned clientset, till we have removed all uses of the unversioned client. + // Pass both unversioned client and versioned clientset, till we have removed all uses of the unversioned client. if !f.SkipNamespaceCreation { DumpAllNamespaceInfo(f.ClientSet, f.Namespace.Name) } diff --git a/test/e2e/framework/statefulset_utils.go b/test/e2e/framework/statefulset_utils.go index b2690b24907..304b0098fc3 100644 --- a/test/e2e/framework/statefulset_utils.go +++ b/test/e2e/framework/statefulset_utils.go @@ -183,7 +183,7 @@ func (s *StatefulSetTester) DeleteStatefulPodAtIndex(index int, ss *apps.Statefu // VerifyStatefulPodFunc is a func that examines a StatefulSetPod. type VerifyStatefulPodFunc func(*v1.Pod) -// VerifyPodAtIndex applies a visitor patter to the Pod at index in ss. verify is is applied to the Pod to "visit" it. +// VerifyPodAtIndex applies a visitor patter to the Pod at index in ss. verify is applied to the Pod to "visit" it. func (s *StatefulSetTester) VerifyPodAtIndex(index int, ss *apps.StatefulSet, verify VerifyStatefulPodFunc) { name := getStatefulSetPodNameAtIndex(index, ss) pod, err := s.c.CoreV1().Pods(ss.Namespace).Get(name, metav1.GetOptions{}) diff --git a/test/e2e/framework/testfiles/testfiles.go b/test/e2e/framework/testfiles/testfiles.go index 5097b85b7c8..f0b0a8740c0 100644 --- a/test/e2e/framework/testfiles/testfiles.go +++ b/test/e2e/framework/testfiles/testfiles.go @@ -128,7 +128,7 @@ type RootFileSource struct { Root string } -// ReadTestFile looks looks for the file relative to the configured +// ReadTestFile looks for the file relative to the configured // root directory. func (r RootFileSource) ReadTestFile(filePath string) ([]byte, error) { fullPath := filepath.Join(r.Root, filePath)