[jboss-cvs] JBossAS SVN: r102093 - branches/Branch_Hornet_Temporary_2/testsuite/src/main/org/jboss/test/messagedriven/test.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Mar 8 17:32:23 EST 2010


Author: clebert.suconic at jboss.com
Date: 2010-03-08 17:32:23 -0500 (Mon, 08 Mar 2010)
New Revision: 102093

Modified:
   branches/Branch_Hornet_Temporary_2/testsuite/src/main/org/jboss/test/messagedriven/test/SimpleQueueMessageDrivenCreateDestinationUnitTestCase.java
   branches/Branch_Hornet_Temporary_2/testsuite/src/main/org/jboss/test/messagedriven/test/SimpleTopicMessageDrivenCreateDestinationUnitTestCase.java
Log:
Tweaks

Modified: branches/Branch_Hornet_Temporary_2/testsuite/src/main/org/jboss/test/messagedriven/test/SimpleQueueMessageDrivenCreateDestinationUnitTestCase.java
===================================================================
--- branches/Branch_Hornet_Temporary_2/testsuite/src/main/org/jboss/test/messagedriven/test/SimpleQueueMessageDrivenCreateDestinationUnitTestCase.java	2010-03-08 22:12:44 UTC (rev 102092)
+++ branches/Branch_Hornet_Temporary_2/testsuite/src/main/org/jboss/test/messagedriven/test/SimpleQueueMessageDrivenCreateDestinationUnitTestCase.java	2010-03-08 22:32:23 UTC (rev 102093)
@@ -45,7 +45,7 @@
    {
       destinationName = JMSTestAdmin.getAdmin().createQueueJMXName("CreateDestination"); 
       testProps = (Properties) testQueueProps.clone();
-      testProps.put("destination", "queue/CreateDestination");
+      testProps.put("destination", "CreateDestination");
       testProps.put("createDestination", "true");
    }
    

Modified: branches/Branch_Hornet_Temporary_2/testsuite/src/main/org/jboss/test/messagedriven/test/SimpleTopicMessageDrivenCreateDestinationUnitTestCase.java
===================================================================
--- branches/Branch_Hornet_Temporary_2/testsuite/src/main/org/jboss/test/messagedriven/test/SimpleTopicMessageDrivenCreateDestinationUnitTestCase.java	2010-03-08 22:12:44 UTC (rev 102092)
+++ branches/Branch_Hornet_Temporary_2/testsuite/src/main/org/jboss/test/messagedriven/test/SimpleTopicMessageDrivenCreateDestinationUnitTestCase.java	2010-03-08 22:32:23 UTC (rev 102093)
@@ -43,9 +43,9 @@
    
    static
    {
-      destinationName = JMSTestAdmin.getAdmin().createQueueJMXName("CreateDestination"); 
+      destinationName = JMSTestAdmin.getAdmin().createTopicJMXName("CreateDestination"); 
       testProps = (Properties) testTopicProps.clone();
-      testProps.put("destination", "topic/CreateDestination");
+      testProps.put("destination", "CreateDestination");
       testProps.put("createDestination", "true");
    }
    




More information about the jboss-cvs-commits mailing list