@@ -26,7 +26,7 @@ public async Task PushData_bytes_should_deliver_TransportData_inbound()
2626 . Build ( ) ;
2727
2828 _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions
29- { Host = "localhost" , Port = 80 } ) )
29+ { Host = "localhost" , Port = 80 } ) )
3030 . Via ( stage . AsFlow ( ) )
3131 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
3232 {
@@ -59,7 +59,7 @@ public async Task PushData_string_should_deliver_TransportData_inbound()
5959 . Build ( ) ;
6060
6161 _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions
62- { Host = "localhost" , Port = 80 } ) )
62+ { Host = "localhost" , Port = 80 } ) )
6363 . Via ( stage . AsFlow ( ) )
6464 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
6565 {
@@ -91,7 +91,7 @@ public async Task PushStreamOpened_should_deliver_StreamOpened_inbound()
9191 . Build ( ) ;
9292
9393 _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions
94- { Host = "localhost" , Port = 80 } ) )
94+ { Host = "localhost" , Port = 80 } ) )
9595 . Via ( stage . AsFlow ( ) )
9696 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
9797 {
@@ -125,7 +125,7 @@ public async Task PushMultiplexedData_should_deliver_MultiplexedData_inbound()
125125 . Build ( ) ;
126126
127127 _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions
128- { Host = "localhost" , Port = 80 } ) )
128+ { Host = "localhost" , Port = 80 } ) )
129129 . Via ( stage . AsFlow ( ) )
130130 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
131131 {
@@ -159,7 +159,7 @@ public async Task SimulateInboundStream_should_push_full_lifecycle()
159159 . Build ( ) ;
160160
161161 _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions
162- { Host = "localhost" , Port = 80 } ) )
162+ { Host = "localhost" , Port = 80 } ) )
163163 . Via ( stage . AsFlow ( ) )
164164 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
165165 {
@@ -196,7 +196,7 @@ public async Task PushDisconnected_should_push_TransportDisconnected()
196196 . Build ( ) ;
197197
198198 _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions
199- { Host = "localhost" , Port = 80 } ) )
199+ { Host = "localhost" , Port = 80 } ) )
200200 . Via ( stage . AsFlow ( ) )
201201 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
202202 {
@@ -268,7 +268,7 @@ public async Task PushStreamClosed_should_deliver_StreamClosed_inbound()
268268 . Build ( ) ;
269269
270270 _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions
271- { Host = "localhost" , Port = 80 } ) )
271+ { Host = "localhost" , Port = 80 } ) )
272272 . Via ( stage . AsFlow ( ) )
273273 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
274274 {
@@ -302,7 +302,7 @@ public async Task PushConnectionMigration_should_deliver_ConnectionMigrationDete
302302 . Build ( ) ;
303303
304304 _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions
305- { Host = "localhost" , Port = 80 } ) )
305+ { Host = "localhost" , Port = 80 } ) )
306306 . Via ( stage . AsFlow ( ) )
307307 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
308308 {
@@ -358,7 +358,7 @@ public async Task PushStreamReadCompleted_should_deliver_StreamReadCompleted_inb
358358 . Build ( ) ;
359359
360360 _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions
361- { Host = "localhost" , Port = 80 } ) )
361+ { Host = "localhost" , Port = 80 } ) )
362362 . Via ( stage . AsFlow ( ) )
363363 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
364364 {
@@ -391,7 +391,7 @@ public async Task PushStreamClosed_with_error_reason_should_deliver_error()
391391 . Build ( ) ;
392392
393393 _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions
394- { Host = "localhost" , Port = 80 } ) )
394+ { Host = "localhost" , Port = 80 } ) )
395395 . Via ( stage . AsFlow ( ) )
396396 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
397397 {
@@ -425,7 +425,7 @@ public async Task PushDisconnected_default_reason_should_be_graceful()
425425 . Build ( ) ;
426426
427427 _ = Source . Single < ITransportOutbound > ( new ConnectTransport ( new TcpTransportOptions
428- { Host = "localhost" , Port = 80 } ) )
428+ { Host = "localhost" , Port = 80 } ) )
429429 . Via ( stage . AsFlow ( ) )
430430 . RunWith ( Sink . ForEach < ITransportInbound > ( msg =>
431431 {
@@ -445,4 +445,4 @@ public async Task PushDisconnected_default_reason_should_be_graceful()
445445 var disconnected = Assert . IsType < TransportDisconnected > ( inbound [ 1 ] ) ;
446446 Assert . Equal ( DisconnectReason . Graceful , disconnected . Reason ) ;
447447 }
448- }
448+ }
0 commit comments