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")