modified test case to ignore the extra Timer thread that gets created but I can't yet figure out where its created :)

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@428436 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-08-03 16:01:10 +00:00
parent 4d2b20b1b2
commit a974625016
1 changed files with 2 additions and 1 deletions

View File

@ -87,6 +87,7 @@ public class StartAndStopClientAndBrokerDoesNotLeaveThreadsRunningTest extends T
Thread.sleep(2000); // Wait for the threads to exit on their own
Thread.currentThread().getThreadGroup().list();
assertEquals(numThreads, Thread.currentThread().getThreadGroup().activeCount());
int activeCount = Thread.currentThread().getThreadGroup().activeCount();
assertTrue("Should be at most one more thread but was: " + activeCount, numThreads + 1 <= activeCount);
}
}