Skip to content

Commit

Permalink
Fix test log message about number of values put
Browse files Browse the repository at this point in the history
  • Loading branch information
hsanjuan authored Feb 15, 2020
1 parent d099e8e commit 8fd65ec
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 @@ -416,7 +416,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 8fd65ec

Please sign in to comment.