Fixing test so that it runs on CoreClr

This commit is contained in:
Pawel Kadluczka 2015-11-10 01:44:42 +00:00
parent e1a95c97e1
commit 0bfc97e46f
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ namespace Microsoft.AspNet.Server.KestrelTests
{
using (var server = new TestServer(App, testContext))
{
var socket = new Socket(SocketType.Stream, ProtocolType.IP);
var socket = new Socket(SocketType.Stream, ProtocolType.Tcp);
socket.Connect(IPAddress.Loopback, 54321);
await Task.Delay(200);
socket.Dispose();