@@ -25,7 +25,7 @@ public async Task PushData_bytes_should_deliver_TransportData_inbound()
2525 . AutoConnect ( )
2626 . Build ( ) ;
2727
28- Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
28+ _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
2929 . Via ( stage . AsFlow ( ) )
3030 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
3131 {
@@ -57,7 +57,7 @@ public async Task PushData_string_should_deliver_TransportData_inbound()
5757 . AutoConnect ( )
5858 . Build ( ) ;
5959
60- Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
60+ _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
6161 . Via ( stage . AsFlow ( ) )
6262 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
6363 {
@@ -88,7 +88,7 @@ public async Task PushStreamOpened_should_deliver_StreamOpened_inbound()
8888 . AutoConnect ( )
8989 . Build ( ) ;
9090
91- Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
91+ _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
9292 . Via ( stage . AsFlow ( ) )
9393 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
9494 {
@@ -121,7 +121,7 @@ public async Task PushMultiplexedData_should_deliver_MultiplexedData_inbound()
121121 . AutoConnect ( )
122122 . Build ( ) ;
123123
124- Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
124+ _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
125125 . Via ( stage . AsFlow ( ) )
126126 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
127127 {
@@ -154,7 +154,7 @@ public async Task SimulateInboundStream_should_push_full_lifecycle()
154154 . AutoConnect ( )
155155 . Build ( ) ;
156156
157- Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
157+ _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
158158 . Via ( stage . AsFlow ( ) )
159159 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
160160 {
@@ -190,7 +190,7 @@ public async Task PushDisconnected_should_push_TransportDisconnected()
190190 . AutoConnect ( )
191191 . Build ( ) ;
192192
193- Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
193+ _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
194194 . Via ( stage . AsFlow ( ) )
195195 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
196196 {
@@ -219,7 +219,7 @@ public async Task WaitForDataAsync_should_skip_non_data_messages()
219219 . AutoConnect ( )
220220 . Build ( ) ;
221221
222- Source . From < ITransportOutbound > ( [
222+ _ = Source . From < ITransportOutbound > ( [
223223 new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) ,
224224 new TransportData ( new byte [ ] { 0xAA } )
225225 ] )
@@ -238,7 +238,7 @@ public async Task WaitForOpenStreamAsync_should_skip_non_open_messages()
238238 . AutoConnect ( )
239239 . Build ( ) ;
240240
241- Source . From < ITransportOutbound > ( [
241+ _ = Source . From < ITransportOutbound > ( [
242242 new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) ,
243243 new OpenStream ( 1 , StreamDirection . Bidirectional )
244244 ] )
@@ -261,7 +261,7 @@ public async Task PushStreamClosed_should_deliver_StreamClosed_inbound()
261261 . AutoConnect ( )
262262 . Build ( ) ;
263263
264- Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
264+ _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
265265 . Via ( stage . AsFlow ( ) )
266266 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
267267 {
@@ -294,7 +294,7 @@ public async Task PushConnectionMigration_should_deliver_ConnectionMigrationDete
294294 . AutoConnect ( )
295295 . Build ( ) ;
296296
297- Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
297+ _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
298298 . Via ( stage . AsFlow ( ) )
299299 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
300300 {
@@ -326,7 +326,7 @@ public async Task WaitForMultiplexedDataAsync_should_skip_non_multiplexed_messag
326326 . AutoConnect ( )
327327 . Build ( ) ;
328328
329- Source . From < ITransportOutbound > ( [
329+ _ = Source . From < ITransportOutbound > ( [
330330 new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) ,
331331 new OpenStream ( 1 , StreamDirection . Bidirectional ) ,
332332 new MultiplexedData ( TransportBuffer . Rent ( 0 ) , 1 )
@@ -349,7 +349,7 @@ public async Task PushStreamReadCompleted_should_deliver_StreamReadCompleted_inb
349349 . AutoConnect ( )
350350 . Build ( ) ;
351351
352- Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
352+ _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
353353 . Via ( stage . AsFlow ( ) )
354354 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
355355 {
@@ -381,7 +381,7 @@ public async Task PushStreamClosed_with_error_reason_should_deliver_error()
381381 . AutoConnect ( )
382382 . Build ( ) ;
383383
384- Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
384+ _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
385385 . Via ( stage . AsFlow ( ) )
386386 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
387387 {
@@ -414,7 +414,7 @@ public async Task PushDisconnected_default_reason_should_be_graceful()
414414 . AutoConnect ( )
415415 . Build ( ) ;
416416
417- Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
417+ _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions { Host = "localhost" , Port = 80 } ) )
418418 . Via ( stage . AsFlow ( ) )
419419 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
420420 {
0 commit comments