Skip to content

Commit

Permalink
Merge pull request #5481 from ipfs/fix/name-test-swarm
Browse files Browse the repository at this point in the history
coreapi name: Increase test swarm size
  • Loading branch information
Stebalien authored Sep 18, 2018
2 parents 9962817 + 53575dd commit 87250b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/coreapi/name_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func addTestObject(ctx context.Context, api coreiface.CoreAPI) (coreiface.Path,

func TestBasicPublishResolve(t *testing.T) {
ctx := context.Background()
nds, apis, err := makeAPISwarm(ctx, true, 2)
nds, apis, err := makeAPISwarm(ctx, true, 5)
if err != nil {
t.Fatal(err)
return
Expand Down Expand Up @@ -62,7 +62,7 @@ func TestBasicPublishResolve(t *testing.T) {

func TestBasicPublishResolveKey(t *testing.T) {
ctx := context.Background()
_, apis, err := makeAPISwarm(ctx, true, 2)
_, apis, err := makeAPISwarm(ctx, true, 5)
if err != nil {
t.Fatal(err)
return
Expand Down Expand Up @@ -110,7 +110,7 @@ func TestBasicPublishResolveTimeout(t *testing.T) {
t.Skip("ValidTime doesn't appear to work at this time resolution")

ctx := context.Background()
nds, apis, err := makeAPISwarm(ctx, true, 2)
nds, apis, err := makeAPISwarm(ctx, true, 5)
if err != nil {
t.Fatal(err)
return
Expand Down

0 comments on commit 87250b1

Please sign in to comment.