KestrelHttpServer 297 B

12345678910111213141516171819
  1. commit 5b6db93383b674861a73e3f35de9cef1d9caad49
  2. Author: JanEggers <[email protected]>
  3. Date: Wed Nov 15 20:30:35 2017 +0100
  4. fixed minor copy and paste error in mockconnection handler (#2163)
  5. diff --git a/test/Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs b/test/Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs
  6. index 5ae82897924..273f65f4d4c 100644
  7. --- a/test/Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs
  8. +++ b/test/Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs
  9. @@ -22,7 +22,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.TestHelpers
  10. var connectionContext = new DefaultConnectionContext(features);
  11. Input = new Pipe(InputOptions(connectionContext.BufferPool));
  12. - Output = new Pipe(InputOptions(connectionContext.BufferPool));
  13. + Output = new Pipe(OutputOptions(connectionContext.BufferPool));
  14. var feature = connectionContext.Features.Get<IConnectionTransportFeature>();