Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit 9063570

Browse files
committed
run gofmt on package
1 parent ed08d4f commit 9063570

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

response_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,9 @@ func TestMarshalPayload(t *testing.T) {
3939

4040
func TestMarshalPayloadWithNulls(t *testing.T) {
4141

42-
books := []*Book{nil, {ID:101}, nil}
42+
books := []*Book{nil, {ID: 101}, nil}
4343
var jsonData map[string]interface{}
4444

45-
4645
out := bytes.NewBuffer(nil)
4746
if err := MarshalPayload(out, books); err != nil {
4847
t.Fatal(err)

0 commit comments

Comments
 (0)