Fix TestFindUsedBlobs

This commit is contained in:
Alexander Neumann 2016-08-04 22:30:23 +02:00
parent d7e5f11b78
commit e9cddc0be5
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ func TestFindUsedBlobs(t *testing.T) {
for i, sn := range snapshots {
usedBlobs := pack.NewBlobSet()
err := FindUsedBlobs(repo, *sn.Tree, usedBlobs)
err := FindUsedBlobs(repo, *sn.Tree, usedBlobs, pack.NewBlobSet())
if err != nil {
t.Errorf("FindUsedBlobs returned error: %v", err)
continue