Browse Source

Fix SimpleReactiveDiscoveryClientTests (#1003)

pull/1004/head
limo520 3 years ago committed by GitHub
parent
commit
4bfb6fe4e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      spring-cloud-commons/src/test/java/org/springframework/cloud/client/discovery/simple/reactive/SimpleReactiveDiscoveryClientTests.java

2
spring-cloud-commons/src/test/java/org/springframework/cloud/client/discovery/simple/reactive/SimpleReactiveDiscoveryClientTests.java

@ -66,7 +66,7 @@ public class SimpleReactiveDiscoveryClientTests { @@ -66,7 +66,7 @@ public class SimpleReactiveDiscoveryClientTests {
@Test
public void shouldReturnEmptyFluxForNonExistingService() {
Flux<ServiceInstance> instances = this.client.getInstances("undefined");
StepVerifier.create(instances).expectComplete();
StepVerifier.create(instances).expectComplete().verify();
}
@Test

Loading…
Cancel
Save