disable not ignore (#6754)

Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
pull/6761/head
Sally MacFarlane 8 months ago committed by GitHub
parent 5c1e1e1879
commit 391d670026
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      acceptance-tests/tests/src/test/java/org/hyperledger/besu/tests/acceptance/jsonrpc/EthSendRawTransactionAcceptanceTest.java

@ -24,8 +24,8 @@ import org.hyperledger.besu.tests.acceptance.dsl.transaction.account.TransferTra
import java.math.BigInteger;
import java.util.function.UnaryOperator;
import org.junit.Ignore;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
public class EthSendRawTransactionAcceptanceTest extends AcceptanceTestBase {
@ -52,7 +52,7 @@ public class EthSendRawTransactionAcceptanceTest extends AcceptanceTestBase {
}
@Test
@Ignore("flaky with timeout")
@Disabled("flaky with timeout")
public void shouldSendSuccessfullyToLenientNodeWithoutChainId() {
final TransferTransaction tx = createTransactionWithoutChainId();
final String rawTx = tx.signedTransactionData();

Loading…
Cancel
Save