Skip to content

Commit

Permalink
t.log instead of fmt.println
Browse files Browse the repository at this point in the history
  • Loading branch information
whyrusleeping committed Jul 14, 2020
1 parent de2fff1 commit acd3188
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package typegen
import (
"bytes"
"encoding/hex"
"fmt"
"testing"

cid "github.com/ipfs/go-cid"
Expand All @@ -22,7 +21,7 @@ func TestLinkScan(t *testing.T) {
}); err != nil {
t.Fatal(err)
}
fmt.Println(cids)
t.Log(cids)
}

func TestDeferredMaxLengthSingle(t *testing.T) {
Expand Down

0 comments on commit acd3188

Please sign in to comment.