From 22094368c2865dcfb6daf8366425212b721a4657 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 05 Feb 2009 17:42:14 +0000
Subject: [PATCH] Merge ASN1 branch to trunk
---
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/AttrInfoTest.java | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/AttrInfoTest.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/AttrInfoTest.java
index 9264fe0..58dd232 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/AttrInfoTest.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/AttrInfoTest.java
@@ -36,6 +36,7 @@
import org.opends.server.types.AttributeType;
import org.opends.server.types.AttributeValue;
import org.opends.server.types.Attributes;
+import org.opends.server.types.AttributeValues;
import org.opends.server.util.TimeThread;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
@@ -55,9 +56,9 @@
{
AttributeType type = DirectoryServer.getAttributeType("description");
- AttributeValue att1 = new AttributeValue(type, "string");
- AttributeValue att2 = new AttributeValue(type, "value");
- AttributeValue att3 = new AttributeValue(type, "again");
+ AttributeValue att1 = AttributeValues.create(type, "string");
+ AttributeValue att2 = AttributeValues.create(type, "value");
+ AttributeValue att3 = AttributeValues.create(type, "again");
ChangeNumber del1 = new ChangeNumber(1, (short) 0, (short) 1);
ChangeNumber del2 = new ChangeNumber(1, (short) 1, (short) 1);
--
Gitblit v1.10.0