mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
fix test case log
This commit is contained in:
parent
319421f952
commit
7c5231ce74
1 changed files with 6 additions and 0 deletions
|
|
@ -413,6 +413,12 @@ func TestContentLookup(t *testing.T) {
|
||||||
err = node3.Start()
|
err = node3.Start()
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
defer func() {
|
||||||
|
node1.Stop()
|
||||||
|
node2.Stop()
|
||||||
|
node3.Stop()
|
||||||
|
}()
|
||||||
|
|
||||||
contentKey := []byte{0x3, 0x4}
|
contentKey := []byte{0x3, 0x4}
|
||||||
content := []byte{0x1, 0x2}
|
content := []byte{0x1, 0x2}
|
||||||
contentId := node1.toContentId(contentKey)
|
contentId := node1.toContentId(contentKey)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue