avoid println in the console output

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@467699 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-10-25 16:06:20 +00:00
parent 1b9276d2c1
commit fed2d6b5c7
1 changed files with 2 additions and 2 deletions

View File

@ -79,14 +79,14 @@ public class StartAndStopClientAndBrokerDoesNotLeaveThreadsRunningTest extends T
public void runTest(Task task) throws Exception {
int numThreads = Thread.currentThread().getThreadGroup().activeCount();
Thread.currentThread().getThreadGroup().list();
// Thread.currentThread().getThreadGroup().list();
task.execute();
Thread.yield();
Thread.sleep(2000); // Wait for the threads to exit on their own
Thread.currentThread().getThreadGroup().list();
// Thread.currentThread().getThreadGroup().list();
int activeCount = Thread.currentThread().getThreadGroup().activeCount();
assertTrue("Should be at most one more thread but was: " + activeCount, numThreads + 1 <= activeCount);
}