From d89c47e7cb1b3c9181e25582539aac1dedb46099 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 08 Aug 2016 07:31:25 +0000
Subject: [PATCH] Partial OPENDJ-3106 Migrate Entry

---
 opendj-server-legacy/src/test/java/org/opends/server/plugins/EntryUUIDPluginTestCase.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opendj-server-legacy/src/test/java/org/opends/server/plugins/EntryUUIDPluginTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/plugins/EntryUUIDPluginTestCase.java
index b9425b6..e7cbc18 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/plugins/EntryUUIDPluginTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/plugins/EntryUUIDPluginTestCase.java
@@ -243,7 +243,7 @@
          DirectoryServer.getPluginConfigManager().getRegisteredPlugin(dn);
     plugin.doLDIFImport(importConfig, e);
 
-    assertThat(e.getAttribute("entryuuid")).isNotEmpty();
+    assertThat(e.getAllAttributes("entryuuid")).isNotEmpty();
   }
 
 
@@ -284,7 +284,7 @@
          DirectoryServer.getPluginConfigManager().getRegisteredPlugin(dn);
     plugin.doLDIFImport(importConfig, e);
 
-    assertThat(e.getAttribute("entryuuid")).isNotEmpty();
+    assertThat(e.getAllAttributes("entryuuid")).isNotEmpty();
   }
 
 
@@ -303,7 +303,7 @@
                                       "objectClass: top",
                                       "objectClass: device",
                                       "cn: test");
-    assertThat(e.getAttribute("entryuuid")).isNotEmpty();
+    assertThat(e.getAllAttributes("entryuuid")).isNotEmpty();
   }
 
 
@@ -325,6 +325,6 @@
                                       "objectClass: device",
                                       "cn: test",
                                       "entryUUID: " + UUID.randomUUID());
-    assertThat(e.getAttribute("entryuuid")).isNotEmpty();
+    assertThat(e.getAllAttributes("entryuuid")).isNotEmpty();
   }
 }

--
Gitblit v1.10.0