Skip to content

Commit

Permalink
do not change import statements, rollback autoformatter changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ideahitme committed Apr 11, 2017
1 parent edc4f2d commit 4787fc2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion endpoint/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 4 additions & 2 deletions endpoint/endpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 4787fc2

Please sign in to comment.