diff --git a/test/Microsoft.AspnetCore.Identity.Service.FunctionalTests/Infrastructure/CredentialsServerBuilder.cs b/test/Microsoft.AspnetCore.Identity.Service.FunctionalTests/Infrastructure/CredentialsServerBuilder.cs index 3bc77c007b..3b49641c2b 100644 --- a/test/Microsoft.AspnetCore.Identity.Service.FunctionalTests/Infrastructure/CredentialsServerBuilder.cs +++ b/test/Microsoft.AspnetCore.Identity.Service.FunctionalTests/Infrastructure/CredentialsServerBuilder.cs @@ -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() - .UseSolutionRelativeContentRoot(@".\test\WebSites\Identity.OpenIdConnect.WebSite") + .UseSolutionRelativeContentRoot(@"./test/WebSites/Identity.OpenIdConnect.WebSite") .UseApplicationAssemblies(); }