swarm/network/simulation: increase the sleep duration for TestRun

This commit is contained in:
Janos Guljas 2018-08-01 16:26:13 +02:00
parent 46d4721519
commit f9aa81c35c

View file

@ -68,7 +68,7 @@ func TestRun(t *testing.T) {
defer cancel() defer cancel()
r := sim.Run(ctx, func(ctx context.Context, sim *Simulation) error { r := sim.Run(ctx, func(ctx context.Context, sim *Simulation) error {
time.Sleep(100 * time.Millisecond) time.Sleep(time.Second)
return nil return nil
}) })