Skip to content

Commit

Permalink
run gofmt on package
Browse files Browse the repository at this point in the history
  • Loading branch information
shwoodard committed Oct 11, 2018
1 parent ed08d4f commit 9063570
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions response_test.go
Expand Up @@ -39,10 +39,9 @@ func TestMarshalPayload(t *testing.T) {

func TestMarshalPayloadWithNulls(t *testing.T) {

books := []*Book{nil, {ID:101}, nil}
books := []*Book{nil, {ID: 101}, nil}
var jsonData map[string]interface{}


out := bytes.NewBuffer(nil)
if err := MarshalPayload(out, books); err != nil {
t.Fatal(err)
Expand Down

0 comments on commit 9063570

Please sign in to comment.