mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 15:37:54 -05:00
Fix incorrect duration for THREE_MINUTES from 1 minute to 3 minutes (#7780)
Signed-off-by: Bhanu Pulluri <bhanu.pulluri@kaleido.io> Co-authored-by: Bhanu Pulluri <bhanu.pulluri@kaleido.io>
This commit is contained in:
@@ -41,7 +41,7 @@ public class BftMiningSoakTest extends ParameterizedBftTestBase {
|
||||
|
||||
private static final long ONE_MINUTE = Duration.of(1, ChronoUnit.MINUTES).toMillis();
|
||||
|
||||
private static final long THREE_MINUTES = Duration.of(1, ChronoUnit.MINUTES).toMillis();
|
||||
private static final long THREE_MINUTES = Duration.of(3, ChronoUnit.MINUTES).toMillis();
|
||||
|
||||
private static final long TEN_SECONDS = Duration.of(10, ChronoUnit.SECONDS).toMillis();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user