From 81478c69903dbcd299e2748a3a37857647f8fa70 Mon Sep 17 00:00:00 2001
From: sin <sin@localhost>
Date: Thu, 26 Mar 2009 03:24:33 +0000
Subject: [PATCH] Fix for issue#3880:Core matching rules don't support unicode characters
---
opends/tests/unit-tests-testng/src/server/org/opends/server/util/TestStaticUtils.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/util/TestStaticUtils.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/util/TestStaticUtils.java
index 0d73baa..ef9d5c8 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/util/TestStaticUtils.java
+++ b/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 },
--
Gitblit v1.10.0