From 4787fc25f63352eebade6e050e3da15630b6d5e0 Mon Sep 17 00:00:00 2001 From: ideahitme Date: Tue, 11 Apr 2017 17:13:31 +0200 Subject: [PATCH] do not change import statements, rollback autoformatter changes --- endpoint/endpoint.go | 4 +++- endpoint/endpoint_test.go | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/endpoint/endpoint.go b/endpoint/endpoint.go index 604cd18f73..f3f606f31f 100644 --- a/endpoint/endpoint.go +++ b/endpoint/endpoint.go @@ -16,7 +16,9 @@ limitations under the License. package endpoint -import "strings" +import ( + "strings" +) const ( // OwnerLabelKey is the name of the label that defines the owner of an Endpoint. diff --git a/endpoint/endpoint_test.go b/endpoint/endpoint_test.go index 3bc0bb35d2..eb9fd6ef6e 100644 --- a/endpoint/endpoint_test.go +++ b/endpoint/endpoint_test.go @@ -16,8 +16,10 @@ limitations under the License. package endpoint -import "testing" -import "reflect" +import ( + "reflect" + "testing" +) func TestNewEndpoint(t *testing.T) { e := NewEndpoint("example.org", "1.2.3.4")