Handful of test fixes

This commit is contained in:
jbertram 2014-11-24 16:49:39 -06:00
parent e6a3d3a0c5
commit 7cfd76d321
4 changed files with 5 additions and 5 deletions

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);