Skip to content

Commit bc6f9dc

Browse files
committed
Allow BouncyCastleTest to match in any order
1 parent eef26e4 commit bc6f9dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/openrewrite/java/migrate/BouncyCastleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ void document() {
7272
.afterRecipe(doc -> assertThat(doc.getMarkers().findFirst(MavenResolutionResult.class)
7373
.get().getDependencies().get(Scope.Compile))
7474
.filteredOn(rd -> rd.getDepth() == 0)
75-
.satisfiesExactly(
75+
.satisfiesExactlyInAnyOrder(
7676
rd -> {
7777
assertThat(rd.getGroupId()).isEqualTo("org.bouncycastle");
7878
assertThat(rd.getArtifactId()).isEqualTo("bcprov-jdk18on");

0 commit comments

Comments
 (0)