From 2ea8fe9a13413b32bb7396000f040bd895a9e738 Mon Sep 17 00:00:00 2001 From: Stefan Bratanov Date: Wed, 27 Nov 2024 10:51:16 +0000 Subject: [PATCH] fix assemble --- .../coordinator/publisher/AbstractBlockPublisherTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/beacon/validator/src/test/java/tech/pegasys/teku/validator/coordinator/publisher/AbstractBlockPublisherTest.java b/beacon/validator/src/test/java/tech/pegasys/teku/validator/coordinator/publisher/AbstractBlockPublisherTest.java index aeb0a152435..c0402dc959c 100644 --- a/beacon/validator/src/test/java/tech/pegasys/teku/validator/coordinator/publisher/AbstractBlockPublisherTest.java +++ b/beacon/validator/src/test/java/tech/pegasys/teku/validator/coordinator/publisher/AbstractBlockPublisherTest.java @@ -254,6 +254,7 @@ public void sendSignedBlock_shouldReturnNotImportedWhenBlockImportFails() { } @Test + @SuppressWarnings("FutureReturnValueIgnored") public void sendSignedBlock_shouldTrackBlockAsProducedIfUnblindingTimeouts() { when(blockFactory.unblindSignedBlockIfBlinded(signedBlock, BlockPublishingPerformance.NOOP)) .thenReturn(SafeFuture.failedFuture(new TimeoutException()));