Upgrade to RSocket 1.0.1
This commit is contained in:
@@ -29,7 +29,7 @@ configure(allprojects) { project ->
|
||||
mavenBom "com.fasterxml.jackson:jackson-bom:2.10.4"
|
||||
mavenBom "io.netty:netty-bom:4.1.50.Final"
|
||||
mavenBom "io.projectreactor:reactor-bom:Dysprosium-SR8"
|
||||
mavenBom "io.rsocket:rsocket-bom:1.0.0"
|
||||
mavenBom "io.rsocket:rsocket-bom:1.0.1"
|
||||
mavenBom "org.eclipse.jetty:jetty-bom:9.4.29.v20200521"
|
||||
mavenBom "org.jetbrains.kotlin:kotlin-bom:1.3.72"
|
||||
mavenBom "org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.3.5"
|
||||
|
||||
@@ -75,7 +75,7 @@ public class DefaultRSocketRequesterBuilderTests {
|
||||
@BeforeEach
|
||||
public void setup() {
|
||||
this.transport = mock(ClientTransport.class);
|
||||
given(this.transport.connect(anyInt())).willReturn(Mono.just(this.connection));
|
||||
given(this.transport.connect()).willReturn(Mono.just(this.connection));
|
||||
}
|
||||
|
||||
|
||||
@@ -106,7 +106,7 @@ public class DefaultRSocketRequesterBuilderTests {
|
||||
|
||||
// RSocketStrategies and RSocketConnector configurers should have been called
|
||||
|
||||
verify(this.transport).connect(anyInt());
|
||||
verify(this.transport).connect();
|
||||
verify(strategiesConfigurer).accept(any(RSocketStrategies.Builder.class));
|
||||
verify(factoryConfigurer).configure(any(io.rsocket.RSocketFactory.ClientRSocketFactory.class));
|
||||
assertThat(this.connectorConfigurer.connector()).isNotNull();
|
||||
|
||||
Reference in New Issue
Block a user