From 34bd2032a04bde5753a1165f24b0a2486f3f2b0f Mon Sep 17 00:00:00 2001 From: Sally MacFarlane Date: Mon, 18 Mar 2024 10:51:12 +1000 Subject: [PATCH] ignore flaky test (#6748) Signed-off-by: Sally MacFarlane --- .../jsonrpc/EthSendRawTransactionAcceptanceTest.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/acceptance-tests/tests/src/test/java/org/hyperledger/besu/tests/acceptance/jsonrpc/EthSendRawTransactionAcceptanceTest.java b/acceptance-tests/tests/src/test/java/org/hyperledger/besu/tests/acceptance/jsonrpc/EthSendRawTransactionAcceptanceTest.java index c054a2a1653..b09bf1d5f91 100644 --- a/acceptance-tests/tests/src/test/java/org/hyperledger/besu/tests/acceptance/jsonrpc/EthSendRawTransactionAcceptanceTest.java +++ b/acceptance-tests/tests/src/test/java/org/hyperledger/besu/tests/acceptance/jsonrpc/EthSendRawTransactionAcceptanceTest.java @@ -24,6 +24,7 @@ import java.math.BigInteger; import java.util.function.UnaryOperator; +import org.junit.Ignore; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; @@ -51,12 +52,15 @@ public void setUp() throws Exception { } @Test + @Ignore("flaky with timeout") public void shouldSendSuccessfullyToLenientNodeWithoutChainId() { final TransferTransaction tx = createTransactionWithoutChainId(); final String rawTx = tx.signedTransactionData(); final String txHash = tx.transactionHash(); lenientNode.verify(eth.expectSuccessfulEthRawTransaction(rawTx)); + + // this line is where the test is flaky // Tx should be included on-chain miningNode.verify(eth.expectSuccessfulTransactionReceipt(txHash)); }