1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-09 19:32:24 +08:00

selected changes from CR

This commit is contained in:
Jeromy
2015-01-16 06:17:18 +00:00
parent a7650b259d
commit a6ec12a17d
2 changed files with 14 additions and 7 deletions

View File

@ -33,7 +33,10 @@ func TestReprovide(t *testing.T) {
bstore.Put(blk)
reprov := NewReprovider(clA, bstore)
reprov.Reprovide(ctx)
err := reprov.Reprovide(ctx)
if err != nil {
t.Fatal(err)
}
provs, err := clB.FindProviders(ctx, blk.Key())
if err != nil {