Skip to content

Commit

Permalink
closes #331
Browse files Browse the repository at this point in the history
  • Loading branch information
jvmlet committed Dec 29, 2022
1 parent 3fc51bc commit 86f41b1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ grpcVersion=1.51.0


springBootVersion=3.0.0
springCloudVersion=2022.0.0-RC3
springCloudVersion=2022.0.0

gradleErrorPronePluginVersion=3.0.1
errorProneVersion=2.16
Expand Down
6 changes: 3 additions & 3 deletions grpc-spring-boot-starter-demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ dependencies {
testImplementation "org.springframework.cloud:spring-cloud-config-client"
testImplementation "org.springframework.cloud:spring-cloud-starter-bootstrap"

testImplementation "com.playtika.testcontainers:embedded-keycloak:2.2.2"
testImplementation "com.playtika.testcontainers:embedded-consul:2.2.2"
testImplementation "com.playtika.testcontainers:embedded-keycloak:2.2.14"
testImplementation "com.playtika.testcontainers:embedded-consul:2.2.14"

testImplementation 'org.hamcrest:hamcrest:2.2'
testImplementation 'org.mockito:mockito-core:2.23.0'
Expand All @@ -99,7 +99,7 @@ dependencies {

bothPureAndShadedNettyTestImplementation "io.grpc:grpc-netty"

kafkaStreamTestImplementation "com.playtika.testcontainers:embedded-kafka:2.2.2"
kafkaStreamTestImplementation "com.playtika.testcontainers:embedded-kafka:2.2.14"
kafkaStreamTestImplementation "org.springframework.cloud:spring-cloud-starter-stream-kafka"


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ public Boolean call() throws Exception {
++failed;
}
}
assertThat(succeeded+failed,Matchers.is(concurrency));
assertThat(succeeded, Matchers.is(shouldSucceed.get()));
assertThat(failed, Matchers.is(shouldFail.get()));

Expand Down

0 comments on commit 86f41b1

Please sign in to comment.