Skip to content

Commit

Permalink
refactor: Remove duplicate exposed port in Stub Server (#569)
Browse files Browse the repository at this point in the history
Fixes #567
  • Loading branch information
injectives authored Mar 13, 2024
1 parent 7a09ab7 commit 387483e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected IntegrationTestBase() {
new ImageFromDockerfile().withFileFromClasspath("scripts", "docker/scripts")
.withFileFromClasspath("entrypoint.sh", "docker/entrypoint.sh")
.withFileFromClasspath("Dockerfile", "docker/Dockerfile"))
.withExposedPorts(7687, 7687);
.withExposedPorts(7687);
}

private final GenericContainer<?> stubServer;
Expand Down

0 comments on commit 387483e

Please sign in to comment.