Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/KotlinJava11Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class KotlinJava11Test extends Base
'chmod +x tests/sdks/kotlin/gradlew',
];
protected string $command =
'docker run --network="mockapi" -v $(pwd):/app -w /app/tests/sdks/kotlin openjdk:11-jdk-slim sh -c "./gradlew test -q && cat result.txt"';
'docker run --network="mockapi" -v $(pwd):/app -w /app/tests/sdks/kotlin eclipse-temurin:11-jdk-jammy sh -c "./gradlew test -q && cat result.txt"';

protected array $expectedOutput = [
...Base::PING_RESPONSE,
Expand Down
2 changes: 1 addition & 1 deletion tests/KotlinJava17Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class KotlinJava17Test extends Base
'chmod +x tests/sdks/kotlin/gradlew',
];
protected string $command =
'docker run --network="mockapi" -v $(pwd):/app -w /app/tests/sdks/kotlin openjdk:17-jdk-slim sh -c "./gradlew test -q && cat result.txt"';
'docker run --network="mockapi" -v $(pwd):/app -w /app/tests/sdks/kotlin eclipse-temurin:17-jdk-jammy sh -c "./gradlew test -q && cat result.txt"';

protected array $expectedOutput = [
...Base::PING_RESPONSE,
Expand Down
2 changes: 1 addition & 1 deletion tests/KotlinJava8Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class KotlinJava8Test extends Base
'chmod +x tests/sdks/kotlin/gradlew',
];
protected string $command =
'docker run --network="mockapi" --rm -v $(pwd):/app -w /app/tests/sdks/kotlin openjdk:8-jdk-slim sh -c "./gradlew test -q && cat result.txt"';
'docker run --network="mockapi" --rm -v $(pwd):/app -w /app/tests/sdks/kotlin eclipse-temurin:8-jdk-jammy sh -c "./gradlew test -q && cat result.txt"';

protected array $expectedOutput = [
...Base::PING_RESPONSE,
Expand Down
Loading