test: use qconfig() instead of defaults in TestBucket_Put_Single

Default/nil quick.Config uses 1000 rounds, causing TestBucker_Put_Single to
run for over 3 minutes in CI. The default count (via qconfig()) for boltdb
is 5, so use that.
This commit is contained in:
Anthony Romano 2017-08-08 14:28:39 -07:00
parent 2ab139b399
commit 1038faf165

View File

@ -1640,7 +1640,7 @@ func TestBucket_Put_Single(t *testing.T) {
index++
return true
}, nil); err != nil {
}, qconfig()); err != nil {
t.Error(err)
}
}