allow stomp test to run nicely on slower boxes

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@792911 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bosanac Dejan 2009-07-10 12:20:51 +00:00
parent d3649fc709
commit 8c6e5dccea
1 changed files with 1 additions and 1 deletions

View File

@ -927,7 +927,7 @@ public class StompTest extends CombinationTestSupport {
frame = "DISCONNECT\n" + "\n\n" + Stomp.NULL; frame = "DISCONNECT\n" + "\n\n" + Stomp.NULL;
stompConnection.sendFrame(frame); stompConnection.sendFrame(frame);
try { try {
Thread.sleep(100); Thread.sleep(400);
} catch (InterruptedException e){} } catch (InterruptedException e){}
assertEquals(view.getDurableTopicSubscribers().length, 0); assertEquals(view.getDurableTopicSubscribers().length, 0);
} }