Skip to content

Commit

Permalink
Revert "[UNDERTOW-2279] Re-enable LotsOfHeadersResponseTestCase in Wi…
Browse files Browse the repository at this point in the history
…ndows"

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 abc70e2.
  • Loading branch information
fl4via committed Oct 21, 2024
1 parent a2724f4 commit d550d4f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit d550d4f

Please sign in to comment.