From 9ba11ee04ad056e851f5758645deea95ca837d5d Mon Sep 17 00:00:00 2001 From: Kirthi Krishnamraju Date: Wed, 20 May 2015 18:43:12 -0700 Subject: [PATCH] React to aspnet/Configuration #195,#198 --- .../KestrelWebSocketHelpers.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.AspNet.WebSockets.Client.Test/KestrelWebSocketHelpers.cs b/test/Microsoft.AspNet.WebSockets.Client.Test/KestrelWebSocketHelpers.cs index ea019f256b..1359a5ada9 100644 --- a/test/Microsoft.AspNet.WebSockets.Client.Test/KestrelWebSocketHelpers.cs +++ b/test/Microsoft.AspNet.WebSockets.Client.Test/KestrelWebSocketHelpers.cs @@ -7,7 +7,7 @@ using Microsoft.AspNet.Builder; using Microsoft.AspNet.Hosting; using Microsoft.AspNet.Hosting.Startup; using Microsoft.AspNet.Http; -using Microsoft.Framework.ConfigurationModel; +using Microsoft.Framework.Configuration; using Microsoft.Framework.Runtime.Infrastructure; namespace Microsoft.AspNet.WebSockets.Client.Test @@ -42,7 +42,7 @@ namespace Microsoft.AspNet.WebSockets.Client.Test builder.Run(c => app(c)); }; - var config = new Configuration(); + var config = new ConfigurationSection(); config.Add(new MemoryConfigurationSource()); config.Set("server.urls", "http://localhost:54321");