From 2a51d55ce3399b17bdf61798f233ee1432e4f637 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Fri, 23 Oct 2015 17:14:35 -0700 Subject: [PATCH] Runs go fmt (sorts new go-cleanhttp imports). --- command/agent/check.go | 2 +- command/agent/http_test.go | 2 +- command/agent/ui_endpoint_test.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/command/agent/check.go b/command/agent/check.go index 604d75ea4..d1d316569 100644 --- a/command/agent/check.go +++ b/command/agent/check.go @@ -12,8 +12,8 @@ import ( "time" "github.com/armon/circbuf" - "github.com/hashicorp/go-cleanhttp" "github.com/hashicorp/consul/consul/structs" + "github.com/hashicorp/go-cleanhttp" ) const ( diff --git a/command/agent/http_test.go b/command/agent/http_test.go index 545ad0742..c49f58a2a 100644 --- a/command/agent/http_test.go +++ b/command/agent/http_test.go @@ -18,9 +18,9 @@ import ( "testing" "time" - "github.com/hashicorp/go-cleanhttp" "github.com/hashicorp/consul/consul/structs" "github.com/hashicorp/consul/testutil" + "github.com/hashicorp/go-cleanhttp" ) func makeHTTPServer(t *testing.T) (string, *HTTPServer) { diff --git a/command/agent/ui_endpoint_test.go b/command/agent/ui_endpoint_test.go index 95e5e0b95..76e3f379b 100644 --- a/command/agent/ui_endpoint_test.go +++ b/command/agent/ui_endpoint_test.go @@ -12,9 +12,9 @@ import ( "reflect" "testing" - "github.com/hashicorp/go-cleanhttp" "github.com/hashicorp/consul/consul/structs" "github.com/hashicorp/consul/testutil" + "github.com/hashicorp/go-cleanhttp" ) func TestUiIndex(t *testing.T) {