From 598250a1d84b90f73596041cbb3f1f90688f0ee4 Mon Sep 17 00:00:00 2001 From: Louis DeJardin Date: Fri, 24 Jul 2015 15:23:01 -0700 Subject: [PATCH] Fixing pipe name in test --- .../Microsoft.AspNet.Server.KestrelTests/MultipleLoopTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.AspNet.Server.KestrelTests/MultipleLoopTests.cs b/test/Microsoft.AspNet.Server.KestrelTests/MultipleLoopTests.cs index 651800e54e..31e632340b 100644 --- a/test/Microsoft.AspNet.Server.KestrelTests/MultipleLoopTests.cs +++ b/test/Microsoft.AspNet.Server.KestrelTests/MultipleLoopTests.cs @@ -143,7 +143,7 @@ namespace Microsoft.AspNet.Server.KestrelTests var serverListenPipe = new UvPipeHandle(); serverListenPipe.Init(loop, false); - serverListenPipe.Bind(@"\\.\pipe\ServerPipeListenForConnections"); + serverListenPipe.Bind(@"\\.\pipe\ServerPipeDispatchConnections"); serverListenPipe.Listen(128, (_1, status, error, _2) => { serverConnectionPipe = new UvPipeHandle(); @@ -194,7 +194,7 @@ namespace Microsoft.AspNet.Server.KestrelTests loop2.Init(_uv); clientConnectionPipe.Init(loop2, true); connect.Init(loop2); - connect.Connect(clientConnectionPipe, @"\\.\pipe\ServerPipeListenForConnections", (_1, status, error, _2) => + connect.Connect(clientConnectionPipe, @"\\.\pipe\ServerPipeDispatchConnections", (_1, status, error, _2) => { connect.Dispose();