Handful of test fixes
This commit is contained in:
parent
e6a3d3a0c5
commit
7cfd76d321
|
@ -5239,7 +5239,7 @@ public class PagingTest extends ServiceTestBase
|
|||
// allow time for the logging to actually happen on the server
|
||||
Thread.sleep(100);
|
||||
|
||||
Assert.assertTrue("Expected to find HQ224016", AssertionLoggerHandler.findText("HQ224016"));
|
||||
Assert.assertTrue("Expected to find AMQ224016", AssertionLoggerHandler.findText("AMQ224016"));
|
||||
|
||||
ClientConsumer consumer = session.createConsumer(ADDRESS);
|
||||
|
||||
|
|
|
@ -543,7 +543,7 @@ public class JMSServerControl2Test extends ManagementTestBase
|
|||
|
||||
spec.setPassword("password");
|
||||
|
||||
spec.setDestinationType("Queue");
|
||||
spec.setDestinationType("javax.jms.Queue");
|
||||
spec.setDestination("test");
|
||||
|
||||
spec.setMinSession(1);
|
||||
|
@ -632,7 +632,7 @@ public class JMSServerControl2Test extends ManagementTestBase
|
|||
spec.setUser("user");
|
||||
spec.setPassword("password");
|
||||
|
||||
spec.setDestinationType("Queue");
|
||||
spec.setDestinationType("javax.jms.Queue");
|
||||
spec.setDestination("test");
|
||||
|
||||
spec.setMinSession(1);
|
||||
|
|
|
@ -86,7 +86,7 @@ public class ResourceAdapterTest extends ActiveMQRATestBase
|
|||
spec.setUser("user");
|
||||
spec.setPassword("password");
|
||||
|
||||
spec.setDestinationType("Topic");
|
||||
spec.setDestinationType("javax.jms.Topic");
|
||||
spec.setDestination("test");
|
||||
|
||||
spec.setMinSession(1);
|
||||
|
|
|
@ -740,7 +740,7 @@ public class ExtraStompTest extends StompTestBase
|
|||
while (enu.hasMoreElements())
|
||||
{
|
||||
Message msg = (Message) enu.nextElement();
|
||||
String msgId = msg.getStringProperty("amqMessageId");
|
||||
String msgId = msg.getStringProperty("hqMessageId");
|
||||
if (enable != null && enable.booleanValue())
|
||||
{
|
||||
assertNotNull(msgId);
|
||||
|
|
Loading…
Reference in New Issue