From 49663a8898b6efdf061603a9caf35996462b0c4c Mon Sep 17 00:00:00 2001 From: Ceki Gulcu Date: Tue, 8 Oct 2024 15:31:01 +0200 Subject: [PATCH] disable flaky test Signed-off-by: Ceki Gulcu --- .../blackbox/joran/spi/ConfigurationWatchListTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/logback-classic-blackbox/src/test/java/ch/qos/logback/classic/blackbox/joran/spi/ConfigurationWatchListTest.java b/logback-classic-blackbox/src/test/java/ch/qos/logback/classic/blackbox/joran/spi/ConfigurationWatchListTest.java index dd9faecef3..79377d2c18 100644 --- a/logback-classic-blackbox/src/test/java/ch/qos/logback/classic/blackbox/joran/spi/ConfigurationWatchListTest.java +++ b/logback-classic-blackbox/src/test/java/ch/qos/logback/classic/blackbox/joran/spi/ConfigurationWatchListTest.java @@ -25,10 +25,7 @@ import ch.qos.logback.core.joran.spi.JoranException; import ch.qos.logback.core.testUtil.RandomUtil; import jakarta.servlet.http.HttpServlet; -import org.junit.jupiter.api.AfterEach; -import org.junit.jupiter.api.Assertions; -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.*; import org.slf4j.LoggerFactory; import java.io.UnsupportedEncodingException; @@ -110,9 +107,12 @@ public void smoke() throws MalformedURLException { assertNull(changedURL3); } + @Disabled @Test public void propertiesFromHTTP() throws UnsupportedEncodingException, JoranException, InterruptedException, MalformedURLException { + + String propertiesURLStr = urlString; Logger bazingaLogger = loggerContext.getLogger(BAZINGA_LOGGER_NAME);