Skip to content

Commit 8e8da0e

Browse files
committed
Fix StubRunnerSpringCloudEurekaAutoConfigurationSpec.
Signed-off-by: Olga Maciaszek-Sharma <[email protected]>
1 parent 76786de commit 8e8da0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/spring-cloud-contract-stub-runner-boot-eureka/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
</dependency>
5151
<dependency>
5252
<groupId>org.springframework.boot</groupId>
53-
<artifactId>spring-boot-starter-webflux</artifactId>
53+
<artifactId>spring-boot-restclient</artifactId>
5454
<scope>test</scope>
5555
</dependency>
5656
<dependency>

tests/spring-cloud-contract-stub-runner-boot-eureka/src/test/groovy/org/springframework/cloud/contract/stubrunner/spring/cloud/eureka/StubRunnerSpringCloudEurekaAutoConfigurationSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class StubRunnerSpringCloudEurekaAutoConfigurationSpec {
107107
Awaitility.await()
108108
.pollInterval(1, TimeUnit.SECONDS)
109109
.pollDelay(10, TimeUnit.SECONDS)
110-
.atMost(1, TimeUnit.MINUTES)
110+
.atMost(2, TimeUnit.MINUTES)
111111
.untilAsserted(() -> {
112112
try {
113113
assert restTemplate.getForObject('http://loanIssuance/name', String) == 'loanIssuance'

0 commit comments

Comments
 (0)