Update new test to use UsePerRequestServices

This commit is contained in:
Hao Kung 2014-10-09 14:26:18 -07:00
parent b6bd7f5d78
commit 6fe663951d
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ namespace TagHelpersWebSite
{ {
var configuration = app.GetTestConfiguration(); var configuration = app.GetTestConfiguration();
app.UseServices(services => app.UsePerRequestServices(services =>
{ {
services.AddMvc(configuration); services.AddMvc(configuration);
}); });