| 12345678910111213141516171819 |
- commit 5b6db93383b674861a73e3f35de9cef1d9caad49
- Author: JanEggers <[email protected]>
- Date: Wed Nov 15 20:30:35 2017 +0100
- fixed minor copy and paste error in mockconnection handler (#2163)
- diff --git a/test/Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs b/test/Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs
- index 5ae82897924..273f65f4d4c 100644
- --- a/test/Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs
- +++ b/test/Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs
- @@ -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>();
-
|