React to configuration API changes.

This commit is contained in:
Chris R 2015-09-25 20:54:56 -07:00
parent 9b1558dddd
commit 822ee7caf8
1 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,6 @@ using Microsoft.AspNet.Hosting;
using Microsoft.AspNet.Http;
using Microsoft.Dnx.Runtime.Infrastructure;
using Microsoft.Framework.Configuration;
using Microsoft.Framework.Configuration.Memory;
namespace Microsoft.AspNet.WebSockets.Client.Test
{
@ -43,7 +42,7 @@ namespace Microsoft.AspNet.WebSockets.Client.Test
};
var configBuilder = new ConfigurationBuilder();
configBuilder.Add(new MemoryConfigurationSource());
configBuilder.AddInMemoryCollection();
var config = configBuilder.Build();
config["server.urls"] = "http://localhost:54321";