Fix path separators on functional tests

This commit is contained in:
Javier Calvarro Nelson 2017-08-23 14:43:45 -07:00
parent 9d937cac4b
commit ca184fc2ed
1 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,5 @@
using System;
using System.Linq;
using System.Net.Http;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using Identity.OpenIdConnect.WebSite;
using Identity.OpenIdConnect.WebSite.Identity.Data;
@ -25,7 +23,7 @@ namespace Microsoft.AspnetCore.Identity.Service.FunctionalTests
public CredentialsServerBuilder()
{
Server = new MvcWebApplicationBuilder<Startup>()
.UseSolutionRelativeContentRoot(@".\test\WebSites\Identity.OpenIdConnect.WebSite")
.UseSolutionRelativeContentRoot(@"./test/WebSites/Identity.OpenIdConnect.WebSite")
.UseApplicationAssemblies();
}