diff --git a/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs b/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs index 76cefc837b..48e8214367 100644 --- a/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs +++ b/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs @@ -2,7 +2,6 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.AspNet.Builder; -using Microsoft.AspNet.Diagnostics; using Microsoft.Framework.DependencyInjection; namespace ErrorPageMiddlewareWebSite @@ -19,7 +18,7 @@ namespace ErrorPageMiddlewareWebSite { app.UseCultureReplacer(); - app.UseErrorPage(ErrorPageOptions.ShowAll); + app.UseErrorPage(); app.UseMvc(); } }