]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
CSPACE-3158: Backing out change that qualified role names with tentant ID until App...
authorRichard Millet <richard.millet@berkeley.edu>
Tue, 9 Nov 2010 05:42:46 +0000 (05:42 +0000)
committerRichard Millet <richard.millet@berkeley.edu>
Tue, 9 Nov 2010 05:42:46 +0000 (05:42 +0000)
services/authorization-mgt/client/src/test/java/org/collectionspace/services/authorization/client/test/RoleServiceTest.java

index 2c620442e0f3c2407fd8f08f7f0acf90ee26fc78..f28a30451d392d234419d02e679cc160b3582a39 100644 (file)
@@ -352,7 +352,9 @@ public class RoleServiceTest extends AbstractServiceTestImpl {
         Assert.assertNotNull(output);
 
         //FIXME: Tenant ID of "1" should not be hard coded
-        String roleNameToVerify = "ROLE_" + "1_" + verifyRoleName.toUpperCase();
+        String roleNameToVerify = "ROLE_" +
+               //"1_" + FIXME: Need to qualify role name with tenant ID
+               verifyRoleName.toUpperCase();
         Assert.assertEquals(output.getRoleName(), roleNameToVerify,
                 "RoleName fix did not work!");
     }