You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2005/08/07 07:43:22 UTC

svn commit: r230639 - /directory/apacheds/trunk/core/src/test/org/apache/ldap/server/jndi/SearchContextTest.java

Author: akarasulu
Date: Sat Aug  6 22:43:20 2005
New Revision: 230639

URL: http://svn.apache.org/viewcvs?rev=230639&view=rev
Log:
Fixing broken build.  Looks like the SearchContextTest picked up on the fact 
that I added more entries under ou=system for managing the server's 
configuration.  The counts of entries for single level and subtree level search
should have been updated.

Modified:
    directory/apacheds/trunk/core/src/test/org/apache/ldap/server/jndi/SearchContextTest.java

Modified: directory/apacheds/trunk/core/src/test/org/apache/ldap/server/jndi/SearchContextTest.java
URL: http://svn.apache.org/viewcvs/directory/apacheds/trunk/core/src/test/org/apache/ldap/server/jndi/SearchContextTest.java?rev=230639&r1=230638&r2=230639&view=diff
==============================================================================
--- directory/apacheds/trunk/core/src/test/org/apache/ldap/server/jndi/SearchContextTest.java (original)
+++ directory/apacheds/trunk/core/src/test/org/apache/ldap/server/jndi/SearchContextTest.java Sat Aug  6 22:43:20 2005
@@ -218,7 +218,7 @@
             map.put( result.getName(), result.getAttributes() );
         }
 
-        assertEquals( "Expected number of results returned was incorrect!", 5, map.size() );
+        assertEquals( "Expected number of results returned was incorrect!", 6, map.size() );
 
         assertTrue( map.containsKey( "ou=testing00,ou=system" ) );
 
@@ -249,7 +249,7 @@
             map.put( result.getName(), result.getAttributes() );
         }
 
-        assertEquals( "Expected number of results returned was incorrect", 8, map.size() );
+        assertEquals( "Expected number of results returned was incorrect", 12, map.size() );
 
         assertTrue( map.containsKey( "ou=system" ) );