[jboss-cvs] JBossAS SVN: r91391 - branches/Branch_5_x/testsuite/src/main/org/jboss/test/cluster/testutil.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jul 17 23:24:59 EDT 2009


Author: bstansberry at jboss.com
Date: 2009-07-17 23:24:59 -0400 (Fri, 17 Jul 2009)
New Revision: 91391

Modified:
   branches/Branch_5_x/testsuite/src/main/org/jboss/test/cluster/testutil/DelegatingClusteredTestCase.java
Log:
Avoid deploying stuff twice

Modified: branches/Branch_5_x/testsuite/src/main/org/jboss/test/cluster/testutil/DelegatingClusteredTestCase.java
===================================================================
--- branches/Branch_5_x/testsuite/src/main/org/jboss/test/cluster/testutil/DelegatingClusteredTestCase.java	2009-07-18 03:21:27 UTC (rev 91390)
+++ branches/Branch_5_x/testsuite/src/main/org/jboss/test/cluster/testutil/DelegatingClusteredTestCase.java	2009-07-18 03:24:59 UTC (rev 91391)
@@ -74,7 +74,8 @@
        */
       public DelegatingTestSetup(Test test, String jarNames, List<TestSetupDelegate> delegates) throws Exception
       {
-         super(test, jarNames);
+         // Don't pass the jarNames through to the superclass -- we handle them ourselves
+         super(test, null);
          this.jarNames = jarNames;
          this.setupDelegates = delegates;
       }




More information about the jboss-cvs-commits mailing list