summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-01-08 16:49:55 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2010-01-08 16:49:55 -0800
commite60233062f0744249b00f8eb0e079851525a21f3 (patch)
treecbc2a1a823df0d0696f79b045c7e834bb56037d8 /src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs
parent07c9f0a7b83d4399aeab5a57ea2ae57ac8459fb6 (diff)
parent55e1ef5ec8417f33da4ff83d9083cf7369c8bfff (diff)
downloadDotNetOpenAuth-e60233062f0744249b00f8eb0e079851525a21f3.zip
DotNetOpenAuth-e60233062f0744249b00f8eb0e079851525a21f3.tar.gz
DotNetOpenAuth-e60233062f0744249b00f8eb0e079851525a21f3.tar.bz2
Merge branch 'master' into mvcProjTemplate
Conflicts: projecttemplates/RelyingPartyLogic/Utilities.cs src/DotNetOpenAuth.sln
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs
index 8f53cdd..332b0b7 100644
--- a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs
+++ b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs
@@ -113,11 +113,11 @@ namespace DotNetOpenAuth.Test.OpenId.RelyingParty {
var rp = CreateRelyingParty();
// First verify that delegating identifiers work
- Assert.IsTrue(AuthenticationRequest.Create(id, rp, realm, returnTo, false).Any(), "The delegating identifier should have not generated any results.");
+ Assert.IsTrue(AuthenticationRequest.Create(id, rp, this.realm, this.returnTo, false).Any(), "The delegating identifier should have not generated any results.");
// Now disable them and try again.
rp.SecuritySettings.RejectDelegatingIdentifiers = true;
- Assert.IsFalse(AuthenticationRequest.Create(id, rp, realm, returnTo, false).Any(), "The delegating identifier should have not generated any results.");
+ Assert.IsFalse(AuthenticationRequest.Create(id, rp, this.realm, this.returnTo, false).Any(), "The delegating identifier should have not generated any results.");
}
/// <summary>