[hornetq-commits] JBoss hornetq SVN: r12098 - branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/unit/ra.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Feb 9 10:20:24 EST 2012


Author: ataylor
Date: 2012-02-09 10:20:23 -0500 (Thu, 09 Feb 2012)
New Revision: 12098

Modified:
   branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/unit/ra/HornetQResourceAdapterConfigTest.java
Log:
fixed test

Modified: branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/unit/ra/HornetQResourceAdapterConfigTest.java
===================================================================
--- branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/unit/ra/HornetQResourceAdapterConfigTest.java	2012-02-08 16:28:54 UTC (rev 12097)
+++ branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/unit/ra/HornetQResourceAdapterConfigTest.java	2012-02-09 15:20:23 UTC (rev 12098)
@@ -307,7 +307,7 @@
       Map<String,Method> methodList = new HashMap<String, Method>();
       for (Method method : methods)
       {
-         if(method.getName().startsWith("set"))
+         if(method.getName().startsWith("set") && !method.getName().equals("setManagedConnectionFactory"))
          {
             methodList.put(method.getName(), method);
          }



More information about the hornetq-commits mailing list