Merge branch 'master' of ssh://camlistore.org:29418/camlistore

This commit is contained in:
Brett Slatkin 2012-12-23 14:21:28 -08:00
commit 31baa0c212
1 changed files with 2 additions and 2 deletions

View File

@ -32,9 +32,9 @@ func (lt *lmdbTest) run(t *testing.T) {
sendTestBlobs(srcBlobs, lt.source)
sendTestBlobs(destBlobs, lt.dest)
missing := make(chan blobref.SizedBlobRef, 100)
missing := make(chan blobref.SizedBlobRef)
got := make([]string, 0)
go ListMissingDestinationBlobs(missing, srcBlobs, destBlobs)
go ListMissingDestinationBlobs(missing, nil, srcBlobs, destBlobs)
for sb := range missing {
got = append(got, sb.BlobRef.String())
}