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/09/03 03:23:37 UTC

svn commit: r267379 - /directory/shared/ldap/branches/new-codec-integration/apache2-provider/src/test/org/apache/asn1new/ldap/codec/utils/LdapUrlTest.java

Author: elecharny
Date: Fri Sep  2 18:23:34 2005
New Revision: 267379

URL: http://svn.apache.org/viewcvs?rev=267379&view=rev
Log:
Changed the LdapUrlNull test. We can't pass a null value anymore

Modified:
    directory/shared/ldap/branches/new-codec-integration/apache2-provider/src/test/org/apache/asn1new/ldap/codec/utils/LdapUrlTest.java

Modified: directory/shared/ldap/branches/new-codec-integration/apache2-provider/src/test/org/apache/asn1new/ldap/codec/utils/LdapUrlTest.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/new-codec-integration/apache2-provider/src/test/org/apache/asn1new/ldap/codec/utils/LdapUrlTest.java?rev=267379&r1=267378&r2=267379&view=diff
==============================================================================
--- directory/shared/ldap/branches/new-codec-integration/apache2-provider/src/test/org/apache/asn1new/ldap/codec/utils/LdapUrlTest.java (original)
+++ directory/shared/ldap/branches/new-codec-integration/apache2-provider/src/test/org/apache/asn1new/ldap/codec/utils/LdapUrlTest.java Fri Sep  2 18:23:34 2005
@@ -57,7 +57,7 @@
      */
     public void testLdapUrlNull() throws DecoderException
     {
-        Assert.assertEquals( "ldap:///", new LdapURL( null ).toString() );
+        Assert.assertEquals( "ldap:///", new LdapURL().toString() );
     }
 
     /**