Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 83791 invoked from network); 26 Dec 2005 00:29:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 26 Dec 2005 00:29:37 -0000 Received: (qmail 91602 invoked by uid 500); 26 Dec 2005 00:29:36 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 91577 invoked by uid 500); 26 Dec 2005 00:29:36 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 91565 invoked by uid 99); 26 Dec 2005 00:29:36 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 25 Dec 2005 16:29:36 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 25 Dec 2005 16:29:36 -0800 Received: (qmail 83715 invoked by uid 65534); 26 Dec 2005 00:29:15 -0000 Message-ID: <20051226002915.83714.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r359021 - /directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/LdapDNTest.java Date: Mon, 26 Dec 2005 00:29:15 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: elecharny Date: Sun Dec 25 16:29:12 2005 New Revision: 359021 URL: http://svn.apache.org/viewcvs?rev=359021&view=rev Log: Use the new name of DnParser instead of DNParser Modified: directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/LdapDNTest.java Modified: directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/LdapDNTest.java URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/LdapDNTest.java?rev=359021&r1=359020&r2=359021&view=diff ============================================================================== --- directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/LdapDNTest.java (original) +++ directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/LdapDNTest.java Sun Dec 25 16:29:12 2005 @@ -31,7 +31,7 @@ import junit.framework.TestCase; import org.apache.asn1.codec.DecoderException; -import org.apache.ldap.common.name.DNParser; +import org.apache.ldap.common.name.DnParser; import org.apache.ldap.common.name.LdapDN; import org.apache.ldap.common.schema.DeepTrimToLowerNormalizer; import org.apache.ldap.common.schema.OidNormalizer; @@ -1075,7 +1075,7 @@ public void testStringParser() throws Exception { - Name name = DNParser.getNameParser().parse( "CN = Emmanuel Lécharny" ); + Name name = DnParser.getNameParser().parse( "CN = Emmanuel Lécharny" ); Assert.assertEquals( "CN = Emmanuel Lécharny", ((LdapDN)name).getName() ); Assert.assertEquals( "cn=Emmanuel Lécharny", name.toString() );