You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2012/01/02 13:08:43 UTC

svn commit: r1226399 - /directory/apacheds/branches/apacheds-txns/core-integ/src/test/java/org/apache/directory/server/core/authz/SearchAuthorizationIT.java

Author: elecharny
Date: Mon Jan  2 12:08:43 2012
New Revision: 1226399

URL: http://svn.apache.org/viewvc?rev=1226399&view=rev
Log:
Fixed some comments (typos)

Modified:
    directory/apacheds/branches/apacheds-txns/core-integ/src/test/java/org/apache/directory/server/core/authz/SearchAuthorizationIT.java

Modified: directory/apacheds/branches/apacheds-txns/core-integ/src/test/java/org/apache/directory/server/core/authz/SearchAuthorizationIT.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-txns/core-integ/src/test/java/org/apache/directory/server/core/authz/SearchAuthorizationIT.java?rev=1226399&r1=1226398&r2=1226399&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-txns/core-integ/src/test/java/org/apache/directory/server/core/authz/SearchAuthorizationIT.java (original)
+++ directory/apacheds/branches/apacheds-txns/core-integ/src/test/java/org/apache/directory/server/core/authz/SearchAuthorizationIT.java Mon Jan  2 12:08:43 2012
@@ -67,7 +67,6 @@ import org.junit.runner.RunWith;
 @CreateDS(enableAccessControl = true, name = "SearchAuthorizationIT")
 public class SearchAuthorizationIT extends AbstractLdapTestUnit
 {
-
     // to avoid creating too many connections during recursive operations
     private LdapConnection reusableAdminCon;
 
@@ -760,7 +759,7 @@ public class SearchAuthorizationIT exten
         deleteAccessControlSubentry( "excludeOUValue" );
 
         // now add a subentry that enables anyone to search an entry below ou=system
-        // down two more rdns for DNs of a max size of 3.  This time we should be able
+        // down two more rdns for DNs of a max size of 2.  This time we should be able
         // to see the telephoneNumber attribute
         createAccessControlSubentry( "includeAllAttributeTypesAndValues", "{ maximum 2 }",
             "{ " +
@@ -783,7 +782,7 @@ public class SearchAuthorizationIT exten
         // again we should find four entries
         assertTrue( checkCanSearchAs( "billyd", "billyd", 3 ) );
 
-        // check now to make sure the telephoneNumber attribute is present in results
+        // check now to make sure the ou=testEntry entry is present in results
         for ( Entry result : results.values() )
         {
             assertTrue( result.get( "ou" ).contains( "testEntry" ) );