fixed minor copy and paste error in mockconnection handler (#2163)

This commit is contained in:
JanEggers 2017-11-15 20:30:35 +01:00 committed by Stephen Halter
parent 065e9bb57a
commit 5b6db93383
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.TestHelpers
var connectionContext = new DefaultConnectionContext(features);
Input = new Pipe(InputOptions(connectionContext.BufferPool));
Output = new Pipe(InputOptions(connectionContext.BufferPool));
Output = new Pipe(OutputOptions(connectionContext.BufferPool));
var feature = connectionContext.Features.Get<IConnectionTransportFeature>();