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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jun 19 07:54:11 EDT 2008


Author: alesj
Date: 2008-06-19 07:54:11 -0400 (Thu, 19 Jun 2008)
New Revision: 74828

Modified:
   trunk/testsuite/src/main/org/jboss/test/profileservice/test/DeployUnitTestCase.java
Log:
Use variable.

Modified: trunk/testsuite/src/main/org/jboss/test/profileservice/test/DeployUnitTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/profileservice/test/DeployUnitTestCase.java	2008-06-19 11:51:03 UTC (rev 74827)
+++ trunk/testsuite/src/main/org/jboss/test/profileservice/test/DeployUnitTestCase.java	2008-06-19 11:54:11 UTC (rev 74828)
@@ -107,7 +107,7 @@
             getLog().info("Found " + type + " deployment: " + deployment);
             Set<String> types = deployment.getTypes();
             if (types != null && types.isEmpty() == false)
-               assertTrue("Missing type: " + type + ", available: " + types, deployment.getTypes().contains(type));
+               assertTrue("Missing type: " + type + ", available: " + types, types.contains(type));
             if (tester != null)
             {
                tester.testManagedDeployment();




More information about the jboss-cvs-commits mailing list