From 186b4c5d21a41edcd2ddaf166b37f14d41bab41e Mon Sep 17 00:00:00 2001 From: Sally MacFarlane Date: Tue, 11 Jun 2024 17:37:35 +1000 Subject: [PATCH] disable flaky test (#7202) Signed-off-by: Sally MacFarlane --- .../besu/ethereum/p2p/discovery/dns/DNSDaemonTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ethereum/p2p/src/test/java/org/hyperledger/besu/ethereum/p2p/discovery/dns/DNSDaemonTest.java b/ethereum/p2p/src/test/java/org/hyperledger/besu/ethereum/p2p/discovery/dns/DNSDaemonTest.java index 93074d37104..08539d47bf8 100644 --- a/ethereum/p2p/src/test/java/org/hyperledger/besu/ethereum/p2p/discovery/dns/DNSDaemonTest.java +++ b/ethereum/p2p/src/test/java/org/hyperledger/besu/ethereum/p2p/discovery/dns/DNSDaemonTest.java @@ -29,6 +29,7 @@ import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -73,6 +74,7 @@ void testDNSDaemon(final Vertx vertx, final VertxTestContext testContext) } @Test + @Disabled("this test is flaky") @DisplayName("Test DNS Daemon with periodic lookup to a mock DNS server") void testDNSDaemonPeriodic(final Vertx vertx, final VertxTestContext testContext) throws InterruptedException {