Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -26,7 +27,7 @@ final class Utils
{
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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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;
Expand Down Expand Up @@ -145,6 +147,10 @@ public void checkInvalidIntTest(Map<Integer, String> exceptedValues)
}
}

private void fail() {
Assertions.fail();
}

/**
* Test int to type.
*/
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<product.locales>ca_ES,es,de,fr,ja,ko,pl,zh_CN,zh_TW</product.locales>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<localized.jars.classifier>i18n</localized.jars.classifier>
<commons.version>3.0.2</commons.version>
<commons.version>3.0.3</commons.version>
<freemarker.version>2.3.34</freemarker.version>
<metrics-core.version>4.2.30</metrics-core.version>
<bc.fips.version>2.1.2</bc.fips.version>
Expand Down