Skip to content

Commit

Permalink
Merge pull request #3 from libp2p/fit/govet/one
Browse files Browse the repository at this point in the history
fix(govet): correct fmt for bool is %t
  • Loading branch information
whyrusleeping authored Oct 3, 2016
2 parents 7c54aa9 + aa9e1d0 commit 1b26b1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2p/transport/tcp/reuseport_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func TestReuseError(t *testing.T) {

for k, v := range cases {
if ReuseErrShouldRetry(k) != v {
t.Fatalf("expected %b for %#v", v, k)
t.Fatalf("expected %t for %#v", v, k)
}
}

Expand Down

0 comments on commit 1b26b1f

Please sign in to comment.