From dc034e533ce71a088634fa192bcad0cd8205b5ad Mon Sep 17 00:00:00 2001 From: Simone Bordet Date: Sat, 5 Nov 2016 13:08:28 +0100 Subject: [PATCH] Removed @Ignore from test. --- .../eclipse/jetty/server/InsufficientThreadsDetectionTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/jetty-server/src/test/java/org/eclipse/jetty/server/InsufficientThreadsDetectionTest.java b/jetty-server/src/test/java/org/eclipse/jetty/server/InsufficientThreadsDetectionTest.java index ade942a2d9d..e95356b03a6 100644 --- a/jetty-server/src/test/java/org/eclipse/jetty/server/InsufficientThreadsDetectionTest.java +++ b/jetty-server/src/test/java/org/eclipse/jetty/server/InsufficientThreadsDetectionTest.java @@ -21,7 +21,6 @@ package org.eclipse.jetty.server; import org.eclipse.jetty.util.thread.QueuedThreadPool; import org.eclipse.jetty.util.thread.ThreadPool; import org.junit.After; -import org.junit.Ignore; import org.junit.Test; public class InsufficientThreadsDetectionTest { @@ -69,7 +68,6 @@ public class InsufficientThreadsDetectionTest { } @Test // Github issue #586 - @Ignore // TODO test failing??? public void testCaseForMultipleConnectors() throws Exception { // server has 4 threads in the executor _server = new Server(new QueuedThreadPool(4));