From 6283c9a0e24fc4552b15f3824ccfa400b5dbb189 Mon Sep 17 00:00:00 2001 From: Jacob Laursen Date: Tue, 24 May 2022 08:13:02 +0200 Subject: [PATCH] Disable broken test (#12793) Related to: #12784 Signed-off-by: Jacob Laursen --- .../org/openhab/binding/mqtt/handler/BrokerHandlerTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bundles/org.openhab.binding.mqtt/src/test/java/org/openhab/binding/mqtt/handler/BrokerHandlerTest.java b/bundles/org.openhab.binding.mqtt/src/test/java/org/openhab/binding/mqtt/handler/BrokerHandlerTest.java index 3a3313d86cd..792a4d9a928 100644 --- a/bundles/org.openhab.binding.mqtt/src/test/java/org/openhab/binding/mqtt/handler/BrokerHandlerTest.java +++ b/bundles/org.openhab.binding.mqtt/src/test/java/org/openhab/binding/mqtt/handler/BrokerHandlerTest.java @@ -24,6 +24,7 @@ import java.util.concurrent.ScheduledThreadPoolExecutor; import org.eclipse.jdt.annotation.NonNullByDefault; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.ArgumentCaptor; @@ -95,6 +96,7 @@ public class BrokerHandlerTest extends JavaTest { verify(handler).createBrokerConnection(); } + @Disabled("Temporarily disabled as broken since May 2022") @Test public void handlerInit() throws InterruptedException, IllegalArgumentException { assertThat(initializeHandlerWaitForTimeout(), is(true));