Skip to content

Commit

Permalink
Merge pull request #150 from ipfs/test/fix-log-msg
Browse files Browse the repository at this point in the history
Fix test log message about number of values put
  • Loading branch information
Stebalien committed Feb 15, 2020
2 parents b8e7d93 + 8fd65ec commit 5460135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/basic_tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ func subtestQuery(t *testing.T, ds dstore.Datastore, q dsq.Query, count int) {
})
}

t.Logf("putting %d values", count)
t.Logf("putting %d values", len(input))
for i, e := range input {
err := ds.Put(dstore.RawKey(e.Key), e.Value)
if err != nil {
Expand Down

0 comments on commit 5460135

Please sign in to comment.