mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
p2p/discv5: replace fmt.* to t.* in tests.
fmt.Printf -> t.Logf
This commit is contained in:
parent
89900fb5ff
commit
0c30eff7e1
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ func TestSimRandomResolve(t *testing.T) {
|
|||
if err := net.SetFallbackNodes([]*Node{bootnode.Self()}); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
fmt.Printf("launched @ %v: %x\n", time.Now(), net.Self().ID[:16])
|
||||
t.Logf("launched @ %v: %x\n", time.Now(), net.Self().ID[:16])
|
||||
}
|
||||
}()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue