From 17a68b37eb17aa7b52c7c69d6d0a420887e03c9d Mon Sep 17 00:00:00 2001 From: Enrico Del Fante Date: Tue, 25 Feb 2025 12:18:48 +0100 Subject: [PATCH] pinned sync --- .../beacon/sync/forward/singlepeer/CommonAncestorTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/beacon/sync/src/test/java/tech/pegasys/teku/beacon/sync/forward/singlepeer/CommonAncestorTest.java b/beacon/sync/src/test/java/tech/pegasys/teku/beacon/sync/forward/singlepeer/CommonAncestorTest.java index 0946cbc1dd1..9846a6f3469 100644 --- a/beacon/sync/src/test/java/tech/pegasys/teku/beacon/sync/forward/singlepeer/CommonAncestorTest.java +++ b/beacon/sync/src/test/java/tech/pegasys/teku/beacon/sync/forward/singlepeer/CommonAncestorTest.java @@ -24,16 +24,16 @@ import static tech.pegasys.teku.beacon.sync.forward.singlepeer.CommonAncestor.SLOTS_TO_JUMP_BACK_EXPONENTIAL_BASE; import static tech.pegasys.teku.infrastructure.async.SafeFutureAssert.assertThatSafeFuture; +import java.util.Optional; import org.junit.jupiter.api.Test; import tech.pegasys.teku.infrastructure.async.SafeFuture; import tech.pegasys.teku.infrastructure.unsigned.UInt64; import tech.pegasys.teku.networking.eth2.peers.PeerStatus; -import java.util.Optional; - public class CommonAncestorTest extends AbstractSyncTest { - private final CommonAncestor commonAncestor = new CommonAncestor(recentChainData, 4, Optional.empty()); + private final CommonAncestor commonAncestor = + new CommonAncestor(recentChainData, 4, Optional.empty()); @Test void shouldNotSearchCommonAncestorWithoutSufficientLocalData() {