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 a74ca4d commit f7973aaCopy full SHA for f7973aa
core/src/test/java/org/testcontainers/containers/GenericContainerTest.java
@@ -52,7 +52,7 @@ public class GenericContainerTest {
52
public void shouldReportOOMAfterWait() {
53
Info info = DockerClientFactory.instance().client().infoCmd().exec();
54
// Poor man's rootless Docker detection :D
55
- Assumptions.assumeThat(info.getSecurityOptions()).doesNotContain("rootless");
+ Assumptions.assumeThat(info.getSecurityOptions()).doesNotContain("name=rootless");
56
try (
57
GenericContainer<?> container = new GenericContainer<>(TestImages.TINY_IMAGE)
58
.withStartupCheckStrategy(new NoopStartupCheckStrategy())
0 commit comments