mirror of https://github.com/apache/activemq.git
AMQ-6697 Make the MBean explicitly final for java 7 support
(cherry picked from commit 8417ce537b
)
This commit is contained in:
parent
0be8b63fde
commit
e38ac94a27
|
@ -1153,7 +1153,7 @@ public class Stomp11Test extends StompTestSupport {
|
||||||
String f = stompConnection.receiveFrame();
|
String f = stompConnection.receiveFrame();
|
||||||
assertTrue(f.startsWith("CONNECTED"));
|
assertTrue(f.startsWith("CONNECTED"));
|
||||||
|
|
||||||
QueueViewMBean queueView = getProxyToQueue(getQueueName());
|
final QueueViewMBean queueView = getProxyToQueue(getQueueName());
|
||||||
assertEquals(1, queueView.getQueueSize());
|
assertEquals(1, queueView.getQueueSize());
|
||||||
|
|
||||||
frame = "BEGIN\n" + "transaction: tx1\n" + "\n\n" + Stomp.NULL;
|
frame = "BEGIN\n" + "transaction: tx1\n" + "\n\n" + Stomp.NULL;
|
||||||
|
|
Loading…
Reference in New Issue