From c5740d7b39334af983957a9c284ddd792d598f6c Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 10 Jul 2015 15:13:20 +0000
Subject: [PATCH] Code cleanup
---
opendj-server-legacy/src/test/java/org/opends/server/plugins/LastModPluginTestCase.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/plugins/LastModPluginTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/plugins/LastModPluginTestCase.java
index 09e2898..fffbfa6 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/plugins/LastModPluginTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/plugins/LastModPluginTestCase.java
@@ -173,10 +173,10 @@
public void testInitializeWithValidConfigsWithoutSchema(Entry e)
throws Exception
{
- AttributeType ctType = DirectoryConfig.getAttributeType("createtimestamp", false);
- AttributeType cnType = DirectoryConfig.getAttributeType("creatorsname", false);
- AttributeType mtType = DirectoryConfig.getAttributeType("modifytimestamp", false);
- AttributeType mnType = DirectoryConfig.getAttributeType("modifiersname", false);
+ AttributeType ctType = DirectoryServer.getAttributeType("createtimestamp");
+ AttributeType cnType = DirectoryServer.getAttributeType("creatorsname");
+ AttributeType mtType = DirectoryServer.getAttributeType("modifytimestamp");
+ AttributeType mnType = DirectoryServer.getAttributeType("modifiersname");
DirectoryServer.deregisterAttributeType(ctType);
DirectoryServer.deregisterAttributeType(cnType);
--
Gitblit v1.10.0