mirror of https://github.com/apache/activemq.git
fixed unsubscribe test
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@377725 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
06f44c7245
commit
1b3a5939a8
|
@ -178,7 +178,7 @@ public class StompTest extends CombinationTestSupport {
|
|||
|
||||
sendFrame(frame);
|
||||
|
||||
TextMessage message = (TextMessage) consumer.receive(60000);
|
||||
TextMessage message = (TextMessage) consumer.receive(1000);
|
||||
assertNotNull(message);
|
||||
assertEquals("Hello World", message.getText());
|
||||
}
|
||||
|
@ -323,7 +323,10 @@ public class StompTest extends CombinationTestSupport {
|
|||
"destination:/queue/" + getQueueName() + "\n" +
|
||||
"\n\n" +
|
||||
Stomp.NULL;
|
||||
sendFrame(frame);
|
||||
sendFrame(frame);
|
||||
|
||||
// lets wait for the unsubscribe to take effect
|
||||
Thread.sleep(1000);
|
||||
|
||||
//send a message to our queue
|
||||
sendMessage("second message");
|
||||
|
|
Loading…
Reference in New Issue