Skip to content

Commit

Permalink
Remove a testing.Logf() line that spoils otherwise quiet test output (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
phad committed Oct 3, 2016
1 parent 9bd1c9f commit 5da2538
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions merkle/sparse_merkle_tree_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -378,12 +378,11 @@ func testSparseTreeFetches(t *testing.T, vec sparseTestVector) {
readMutex.Lock()

// calculate the set of expected node reads.
for i, kv := range vec.kv {
for _, kv := range vec.kv {
keyHash := w.hasher.HashKey([]byte(kv.k))
nodeID := storage.NewNodeIDFromHash(keyHash)
leafNodeIDs = append(leafNodeIDs, nodeID)
sibs := nodeID.Siblings()
t.Logf("hash %d: %s", i, nodeID.String())

// start with the set of siblings of all leaves:
for j := range sibs {
Expand Down

0 comments on commit 5da2538

Please sign in to comment.