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 2005/12/26 01:00:21 UTC

svn commit: r359016 - /directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/DNParserTest.java

Author: elecharny
Date: Sun Dec 25 16:00:16 2005
New Revision: 359016

URL: http://svn.apache.org/viewcvs?rev=359016&view=rev
Log:
Fixed a test (RFC2253_2) : the expected result was not good.

Modified:
    directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/DNParserTest.java

Modified: directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/DNParserTest.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/DNParserTest.java?rev=359016&r1=359015&r2=359016&view=diff
==============================================================================
--- directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/DNParserTest.java (original)
+++ directory/shared/ldap/branches/DN-refactoring/common/src/test/org/apache/ldap/common/name/DNParserTest.java Sun Dec 25 16:00:16 2005
@@ -324,7 +324,7 @@
                 "CN = Sales + CN =   J. Smith , O = Widget Inc. , C = US",
                 ((LdapDN)nameRFC2253_2).toUpName() );
         assertEquals( "RFC2253_2 : ",
-                "cn=Sales+cn=J. Smith,o=Widget Inc.,c=US",
+                "cn=J. Smith+cn=Sales,o=Widget Inc.,c=US",
                 nameRFC2253_2.toString() );
     }