[jboss-cvs] JBossAS SVN: r77413 - trunk/testsuite/src/main/org/jboss/test/profileservice/test.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Aug 25 04:40:55 EDT 2008


Author: alesj
Date: 2008-08-25 04:40:55 -0400 (Mon, 25 Aug 2008)
New Revision: 77413

Modified:
   trunk/testsuite/src/main/org/jboss/test/profileservice/test/ProfileServiceUnitTestCase.java
Log:
Currently ignore inconsistent name - JBAS-5883.

Modified: trunk/testsuite/src/main/org/jboss/test/profileservice/test/ProfileServiceUnitTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/profileservice/test/ProfileServiceUnitTestCase.java	2008-08-25 07:45:14 UTC (rev 77412)
+++ trunk/testsuite/src/main/org/jboss/test/profileservice/test/ProfileServiceUnitTestCase.java	2008-08-25 08:40:55 UTC (rev 77413)
@@ -141,7 +141,11 @@
       {
          String[] paths = name.split("/");
          if (paths.length < 2)
-            throw new IllegalArgumentException("Expecting at least 2 tokens: " + name);
+         {
+            // TODO - fix name inconsistency; JBAS-5883
+            log.warn("Inconsistent name: " + name);
+            continue;
+         }
 
          // Add back in any trailing '/'
          if(name.endsWith("/"))




More information about the jboss-cvs-commits mailing list