You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by tr...@apache.org on 2005/06/20 19:47:43 UTC

svn commit: r191521 - /directory/apacheds/branches/db_refactor/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java

Author: trustin
Date: Mon Jun 20 10:47:43 2005
New Revision: 191521

URL: http://svn.apache.org/viewcvs?rev=191521&view=rev
Log:
Fixed: duplicate context partition name causes tests fail.

Modified:
    directory/apacheds/branches/db_refactor/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java

Modified: directory/apacheds/branches/db_refactor/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java
URL: http://svn.apache.org/viewcvs/directory/apacheds/branches/db_refactor/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java?rev=191521&r1=191520&r2=191521&view=diff
==============================================================================
--- directory/apacheds/branches/db_refactor/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java (original)
+++ directory/apacheds/branches/db_refactor/main/src/test/org/apache/ldap/server/jndi/ServerContextFactoryTest.java Mon Jun 20 10:47:43 2005
@@ -103,7 +103,7 @@
 
         // Add partition 'MixedCase'
         pcfg = new MutableContextPartitionConfiguration();
-        pcfg.setName( "example" );
+        pcfg.setName( "mixedcase" );
         pcfg.setSuffix( "dc=MixedCase" );
         
         indexedAttrs = new HashSet();