From 16ad043cb8d9300fcfd59a39ac465413ee206e03 Mon Sep 17 00:00:00 2001 From: Maisem Ali Date: Tue, 9 Feb 2016 15:48:34 -0800 Subject: [PATCH] running gofmt --- test/e2e/kubectl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/kubectl.go b/test/e2e/kubectl.go index 9f06dbb6aeb..ad0b0174a43 100644 --- a/test/e2e/kubectl.go +++ b/test/e2e/kubectl.go @@ -170,7 +170,7 @@ var _ = Describe("Kubectl client", func() { var podPath string BeforeEach(func() { - podPath = filepath.Join(testContext.RepoRoot, "test", "e2e", "testing-manifests", "kubectl", "pod-with-readiness-probe.yaml") + podPath = filepath.Join(testContext.RepoRoot, "test", "e2e", "testing-manifests", "kubectl", "pod-with-readiness-probe.yaml") By(fmt.Sprintf("creating the pod from %v", podPath)) runKubectlOrDie("create", "-f", podPath, fmt.Sprintf("--namespace=%v", ns)) checkPodsRunningReady(c, ns, []string{simplePodName}, podStartTimeout)