From d550d4fe8624b7227ad67704c7b818b30f026655 Mon Sep 17 00:00:00 2001 From: Flavia Rainone Date: Wed, 16 Oct 2024 05:49:17 -0300 Subject: [PATCH] Revert "[UNDERTOW-2279] Re-enable LotsOfHeadersResponseTestCase in Windows" The tests were disabled in CI by mistake and this prevented us seeing that those tests still need to be fixed so they can work in Windows This reverts commit abc70e2601b69cc28d167d129bc71e29ec566cbe. --- .../undertow/server/handlers/LotsOfHeadersResponseTestCase.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/test/java/io/undertow/server/handlers/LotsOfHeadersResponseTestCase.java b/core/src/test/java/io/undertow/server/handlers/LotsOfHeadersResponseTestCase.java index b8d7927127..1d7d3d3b12 100644 --- a/core/src/test/java/io/undertow/server/handlers/LotsOfHeadersResponseTestCase.java +++ b/core/src/test/java/io/undertow/server/handlers/LotsOfHeadersResponseTestCase.java @@ -67,6 +67,8 @@ public void handleRequest(final HttpServerExchange exchange) { @Test public void testLotsOfHeadersInResponse() throws IOException { + // FIXME UNDERTOW-2279 + Assume.assumeFalse(System.getProperty("os.name").startsWith("Windows")); TestHttpClient client = new TestHttpClient(); try { HttpGet get = new HttpGet(DefaultServer.getDefaultServerURL() + "/path");