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

Valera V Harseko
15 hours ago 548fd7e3218cbdd6651fa548801f4b4903ba4487
FIX test signatures
2 files modified
9 ■■■■ changed files
opendj-server-legacy/src/test/java/org/opends/server/backends/pluggable/Utils.java 3 ●●●● patch | view | raw | blame | history
opendj-server-legacy/src/test/java/org/opends/server/controls/PersistentSearchControlTest.java 6 ●●●●● patch | view | raw | blame | history
opendj-server-legacy/src/test/java/org/opends/server/backends/pluggable/Utils.java
@@ -12,6 +12,7 @@
 * information: "Portions Copyright [year] [name of copyright owner]".
 *
 * Portions Copyright 2013-2015 ForgeRock AS.
 * Portions Copyright 2026 3A Systems, LLC.
 */
package org.opends.server.backends.pluggable;
@@ -26,7 +27,7 @@
{
  public static void assertIdsEquals(Iterator<EntryID> actual, long... expected)
  {
    assertThat(actual).containsAll(asList(expected));
    assertThat(actual).toIterable().containsAll(asList(expected));
  }
  public static void assertIsEmpty(EntryIDSet actual)
opendj-server-legacy/src/test/java/org/opends/server/controls/PersistentSearchControlTest.java
@@ -13,6 +13,7 @@
 *
 * Copyright 2006-2010 Sun Microsystems, Inc.
 * Portions Copyright 2014-2016 ForgeRock AS.
 * Portions Copyright 2026 3A Systems, LLC.
 */
package org.opends.server.controls;
@@ -32,6 +33,7 @@
import java.util.Map;
import java.util.Set;
import org.assertj.core.api.Assertions;
import org.forgerock.i18n.LocalizableMessage;
import org.forgerock.opendj.io.ASN1;
import org.forgerock.opendj.io.ASN1Writer;
@@ -145,6 +147,10 @@
    }
  }
  private void fail() {
    Assertions.fail();
  }
  /**
   * Test int to type.
   */