Skip to content

Commit

Permalink
disable not ignore (#6754)
Browse files Browse the repository at this point in the history
Signed-off-by: Sally MacFarlane <[email protected]>
  • Loading branch information
macfarla authored Mar 18, 2024
1 parent 5c1e1e1 commit 391d670
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
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 {
Expand All @@ -52,7 +52,7 @@ public void setUp() throws Exception {
}

@Test
@Ignore("flaky with timeout")
@Disabled("flaky with timeout")
public void shouldSendSuccessfullyToLenientNodeWithoutChainId() {
final TransferTransaction tx = createTransactionWithoutChainId();
final String rawTx = tx.signedTransactionData();
Expand Down

0 comments on commit 391d670

Please sign in to comment.