Skip to content

Commit

Permalink
Fix incorrect duration for THREE_MINUTES from 1 minute to 3 minutes (#…
Browse files Browse the repository at this point in the history
…7780)

Signed-off-by: Bhanu Pulluri <[email protected]>
Co-authored-by: Bhanu Pulluri <[email protected]>
  • Loading branch information
pullurib and Bhanu Pulluri authored Oct 24, 2024
1 parent f16d352 commit a27dccd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit a27dccd

Please sign in to comment.