From 26ac00d698c793c5510ad1aeb45371d637184d0c Mon Sep 17 00:00:00 2001 From: Vlad Date: Sun, 10 Mar 2019 19:29:53 +0400 Subject: [PATCH] swarm/pss: test timeout increased --- swarm/pss/prox_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarm/pss/prox_test.go b/swarm/pss/prox_test.go index 15f3dc3c39..2beb5ab815 100644 --- a/swarm/pss/prox_test.go +++ b/swarm/pss/prox_test.go @@ -232,7 +232,7 @@ func testProxNetwork(t *testing.T) { if err != nil { t.Fatal(err) } - ctx, cancel := context.WithTimeout(context.Background(), time.Second*3) // todo: increase + ctx, cancel := context.WithTimeout(context.Background(), time.Second*20) // todo: review defer cancel() snap := readSnapshot(t, nodeCount) err = sim.WaitTillSnapshotRecreated(ctx, snap)