Skip to content

Commit 887ed12

Browse files
committed
Merge branch 'fix-1641-part-3-make-fabric8-discovery-client-cacheable' into move-discovery-conditionals-to-separate-package
2 parents dd5b410 + 8b29d05 commit 887ed12

File tree

1 file changed

+2
-2
lines changed
  • spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-fabric8-client-discovery/src/test/java/org/springframework/cloud/kubernetes/fabric8/client/discovery

1 file changed

+2
-2
lines changed

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-fabric8-client-discovery/src/test/java/org/springframework/cloud/kubernetes/fabric8/client/discovery/TestAssertions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*/
4444
final class TestAssertions {
4545

46-
private static final String REACTIVE_STATUS = "$.components.reactiveDiscoveryClients.components.['Fabric8 Kubernetes Reactive Discovery Client'].status";
46+
private static final String REACTIVE_STATUS = "$.components.reactiveDiscoveryClients.components.['Fabric8 Reactive Discovery Client'].status";
4747

4848
private static final String BLOCKING_STATUS = "$.components.discoveryComposite.components.discoveryClient.status";
4949

@@ -179,7 +179,7 @@ static void testReactiveConfiguration(ReactiveDiscoveryClient discoveryClient, C
179179
assertThat(BASIC_JSON_TESTER.from(healthResult)).extractingJsonPathStringValue(REACTIVE_STATUS).isEqualTo("UP");
180180

181181
assertThat(BASIC_JSON_TESTER.from(healthResult)).extractingJsonPathArrayValue(
182-
"$.components.reactiveDiscoveryClients.components.['Fabric8 Kubernetes Reactive Discovery Client'].details.services")
182+
"$.components.reactiveDiscoveryClients.components.['Fabric8 Reactive Discovery Client'].details.services")
183183
.containsExactlyInAnyOrder("kubernetes", "busybox-service");
184184

185185
assertThat(BASIC_JSON_TESTER.from(healthResult)).doesNotHaveJsonPath(BLOCKING_STATUS);

0 commit comments

Comments
 (0)