diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-08 16:34:40 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-08 16:34:40 -0700 |
commit | 96cbcaec96d67236244977b0caeb0ff7ec01b749 (patch) | |
tree | 2c513c7fb123d2b9fe3ee5655fa0495343911a83 /src/DotNetOpenId.Test/UI/IdentityEndpointTest.cs | |
parent | 3fb65cccfa1e35de45b3b42cf0f7867b77dca254 (diff) | |
download | DotNetOpenAuth-96cbcaec96d67236244977b0caeb0ff7ec01b749.zip DotNetOpenAuth-96cbcaec96d67236244977b0caeb0ff7ec01b749.tar.gz DotNetOpenAuth-96cbcaec96d67236244977b0caeb0ff7ec01b749.tar.bz2 |
Moved ASP.NET engine initialization in unit tests to just the UI namespace.
Diffstat (limited to 'src/DotNetOpenId.Test/UI/IdentityEndpointTest.cs')
-rw-r--r-- | src/DotNetOpenId.Test/UI/IdentityEndpointTest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenId.Test/UI/IdentityEndpointTest.cs b/src/DotNetOpenId.Test/UI/IdentityEndpointTest.cs index 87dddb4..2ad2960 100644 --- a/src/DotNetOpenId.Test/UI/IdentityEndpointTest.cs +++ b/src/DotNetOpenId.Test/UI/IdentityEndpointTest.cs @@ -16,7 +16,7 @@ namespace DotNetOpenId.Test.UI { Protocol protocol = Protocol.Lookup(version);
TestSupport.Scenarios scenario = TestSupport.Scenarios.AutoApproval;
Identifier identityUrl = TestSupport.GetIdentityUrl(scenario, version);
- string html = TestSupport.Host.ProcessRequest(identityUrl);
+ string html = UITestSupport.Host.ProcessRequest(identityUrl);
Trace.TraceInformation("{0} response:{1}{2}", identityUrl, Environment.NewLine, html);
Assert.IsTrue(Regex.IsMatch(html, string.Format(CultureInfo.InvariantCulture,
@"\<link rel=""{1}"" href=""http://[^/]+/{0}""\>\</link\>",
|