fixed minor copy and paste error in mockconnection handler (#2163)
This commit is contained in:
parent
065e9bb57a
commit
5b6db93383
|
|
@ -22,7 +22,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.TestHelpers
|
||||||
var connectionContext = new DefaultConnectionContext(features);
|
var connectionContext = new DefaultConnectionContext(features);
|
||||||
|
|
||||||
Input = new Pipe(InputOptions(connectionContext.BufferPool));
|
Input = new Pipe(InputOptions(connectionContext.BufferPool));
|
||||||
Output = new Pipe(InputOptions(connectionContext.BufferPool));
|
Output = new Pipe(OutputOptions(connectionContext.BufferPool));
|
||||||
|
|
||||||
var feature = connectionContext.Features.Get<IConnectionTransportFeature>();
|
var feature = connectionContext.Features.Get<IConnectionTransportFeature>();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue