From a5aef292d29c76a10d09388791e9b8063ea271e4 Mon Sep 17 00:00:00 2001 From: mattmoor-sockpuppet Date: Wed, 12 Jun 2019 07:53:43 -0700 Subject: [PATCH] golang format tools (#1455) Produced via: `gofmt -s -w $(find -path './vendor' -prune -o -type f -name '*.go' -print))` `goimports -w $(find -name '*.go' | grep -v vendor)` --- test/e2e/sampleapptestbase.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/sampleapptestbase.go b/test/e2e/sampleapptestbase.go index 37cb9d0b6..97b7d500e 100644 --- a/test/e2e/sampleapptestbase.go +++ b/test/e2e/sampleapptestbase.go @@ -157,7 +157,7 @@ func checkDeployment(t *testing.T, appName, expectedOutput string) { t.Fatalf("Ingress not found (ingress='%s', host='%s')", ingressAddr, serviceHost) } t.Logf("Curling %s/%s", ingressAddr, serviceHost) - + serviceHost = strings.Replace(serviceHost, "http://", "", 1) outputString := "" timeout = servingTimeout