From 5b6db93383b674861a73e3f35de9cef1d9caad49 Mon Sep 17 00:00:00 2001 From: JanEggers Date: Wed, 15 Nov 2017 20:30:35 +0100 Subject: [PATCH] fixed minor copy and paste error in mockconnection handler (#2163) --- .../TestHelpers/MockConnectionHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs b/test/Kestrel.Transport.Libuv.Tests/TestHelpers/MockConnectionHandler.cs index 5ae8289792..273f65f4d4 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();