Skip to content

Commit

Permalink
Increase timeout to fix Can_produce_first_block_when_private_chains_a… (
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaszRozmej authored Dec 12, 2024
1 parent 951c5de commit e63eac0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Nethermind/Nethermind.AuRa.Test/AuRaBlockProducerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@ private async Task<TestResult> StartStop(Context context, bool processingQueueEm
});

context.BlockProducerRunner.Start();
await processedEvent.WaitOneAsync(context.StepDelay * stepDelayMultiplier * 5, CancellationToken.None);
await processedEvent.WaitOneAsync(context.StepDelay * stepDelayMultiplier * 20, CancellationToken.None);
context.BlockTree.ClearReceivedCalls();
await Task.Delay(context.StepDelay);
await Task.Delay(context.StepDelay * 2);
processedEvent.Reset();

try
Expand All @@ -248,7 +248,7 @@ private async Task<TestResult> StartStop(Context context, bool processingQueueEm
processedEvent.Reset();
}

await processedEvent.WaitOneAsync(context.StepDelay * stepDelayMultiplier * 5, CancellationToken.None);
await processedEvent.WaitOneAsync(context.StepDelay * stepDelayMultiplier * 20, CancellationToken.None);

}
finally
Expand Down

0 comments on commit e63eac0

Please sign in to comment.