diff --git a/test/Microsoft.AspNet.Hosting.Tests/Fakes/StartupBase.cs b/test/Microsoft.AspNet.Hosting.Tests/Fakes/StartupBase.cs index 7fbe35cffb..e9daa9584d 100644 --- a/test/Microsoft.AspNet.Hosting.Tests/Fakes/StartupBase.cs +++ b/test/Microsoft.AspNet.Hosting.Tests/Fakes/StartupBase.cs @@ -1,20 +1,12 @@ // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -using Microsoft.AspNet.Builder; using Microsoft.Framework.DependencyInjection; -using Microsoft.Framework.DependencyInjection.Fallback; -using Microsoft.Framework.OptionsModel; -using System; namespace Microsoft.AspNet.Hosting.Fakes { public class StartupBase { - public StartupBase() - { - } - public void ConfigureBaseClassServices(IServiceCollection services) { services.AddOptions(); @@ -24,6 +16,5 @@ namespace Microsoft.AspNet.Hosting.Fakes o.Environment = "BaseClass"; }); } - } } \ No newline at end of file