Skip to content

Commit 915e389

Browse files
committed
mockserver
1 parent e706f98 commit 915e389

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

spring-boot-example/src/test/java/de/rieckpil/blog/testcontainers/DockerComposeIT.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ class DockerComposeIT {
1717
new DockerComposeContainer<>(new File("docker-compose-test.yml"))
1818
.withExposedService("database_1", 5432, Wait.forListeningPort())
1919
.withExposedService("keycloak_1", 8080,
20-
Wait.forHttp("/auth").forStatusCode(200)
21-
.withStartupTimeout(Duration.ofSeconds(90)))
22-
.withOptions("--compatibility");;
20+
Wait.forHttp("/").forStatusCode(200)
21+
.withStartupTimeout(Duration.ofSeconds(90)));
2322

2423
@Test
2524
void dockerComposeTest() {

0 commit comments

Comments
 (0)