We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc31ad1 commit 9fccbb2Copy full SHA for 9fccbb2
modules/cratedb/src/test/java/org/testcontainers/junit/cratedb/SimpleCrateDBTest.java
@@ -60,7 +60,7 @@ public void testExplicitInitScript() throws SQLException {
60
}
61
62
private void assertHasCorrectExposedAndLivenessCheckPorts(CrateDBContainer cratedb) {
63
- assertThat(cratedb.getExposedPorts()).containsExactly(5432, 4200);
+ assertThat(cratedb.getExposedPorts()).containsExactlyInAnyOrder(5432, 4200);
64
assertThat(cratedb.getLivenessCheckPortNumbers())
65
.containsExactlyInAnyOrder(cratedb.getMappedPort(5432), cratedb.getMappedPort(4200));
66
0 commit comments