mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

sin
26.24.2009 81478c69903dbcd299e2748a3a37857647f8fa70
opends/tests/unit-tests-testng/src/server/org/opends/server/util/TestStaticUtils.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Copyright 2006-2008 Sun Microsystems, Inc.
 *      Copyright 2006-2009 Sun Microsystems, Inc.
 */
package org.opends.server.util;
@@ -312,12 +312,12 @@
        { new byte[] { 0x00 }, new byte[] { 0x00 }, 0 },
        { new byte[] { 0x01 }, new byte[] { 0x00 }, 1 },
        { new byte[] { 0x7f }, new byte[] { 0x00 }, 1 },
        { new byte[] { (byte) 0x80 }, new byte[] { 0x00 }, -1 },
        { new byte[] { (byte) 0xff }, new byte[] { 0x00 }, -1 },
        { new byte[] { (byte) 0x80 }, new byte[] { 0x00 }, 1 },
        { new byte[] { (byte) 0xff }, new byte[] { 0x00 }, 1 },
        { new byte[] { 0x00 }, new byte[] { 0x01 }, -1 },
        { new byte[] { 0x00 }, new byte[] { 0x7f }, -1 },
        { new byte[] { 0x00 }, new byte[] { (byte) 0x80 }, 1 },
        { new byte[] { 0x00 }, new byte[] { (byte) 0xff }, 1 },
        { new byte[] { 0x00 }, new byte[] { (byte) 0x80 }, -1 },
        { new byte[] { 0x00 }, new byte[] { (byte) 0xff }, -1 },
        { new byte[] { 0x00, 0x01, 0x02 },
            new byte[] { 0x00, 0x01, 0x02 }, 0 },
        { new byte[] { 0x00, 0x01 }, new byte[] { 0x00, 0x01, 0x02 },