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/27 01:36:58 UTC

svn commit: r1236472 - /directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/jndi/ListIT.java

Author: elecharny
Date: Fri Jan 27 00:36:57 2012
New Revision: 1236472

URL: http://svn.apache.org/viewvc?rev=1236472&view=rev
Log:
Fixed the ListIT test : the ou=users, ou=system is not anymore visible

Modified:
    directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/jndi/ListIT.java

Modified: directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/jndi/ListIT.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/jndi/ListIT.java?rev=1236472&r1=1236471&r2=1236472&view=diff
==============================================================================
--- directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/jndi/ListIT.java (original)
+++ directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/jndi/ListIT.java Fri Jan 27 00:36:57 2012
@@ -6,16 +6,16 @@
  *  to you under the Apache License, Version 2.0 (the
  *  "License"); you may not use this file except in compliance
  *  with the License.  You may obtain a copy of the License at
- *  
+ * 
  *    http://www.apache.org/licenses/LICENSE-2.0
- *  
+ * 
  *  Unless required by applicable law or agreed to in writing,
  *  software distributed under the License is distributed on an
  *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  *  KIND, either express or implied.  See the License for the
  *  specific language governing permissions and limitations
- *  under the License. 
- *  
+ *  under the License.
+ * 
  */
 package org.apache.directory.server.core.jndi;
 
@@ -71,8 +71,8 @@ public class ListIT extends AbstractLdap
         }
 
         assertFalse( set.contains( "uid=admin,ou=system" ) );
-        assertTrue( set.contains( "ou=users,ou=system" ) );
-        assertTrue( set.contains( "ou=groups,ou=system" ) );
+        assertFalse( set.contains( "ou=users,ou=system" ) );
+        assertFalse( set.contains( "ou=groups,ou=system" ) );
     }