diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-21 07:05:28 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-21 07:05:28 -0700 |
commit | b53f5530fe1adbd5dccd6ff2743e8e2ba512eba2 (patch) | |
tree | 50188e63239b37868ef6a0084ec360ce8393f206 /src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs | |
parent | 4b24b2730bfb5333eb13c6e6b79baac1dee49812 (diff) | |
download | DotNetOpenAuth-b53f5530fe1adbd5dccd6ff2743e8e2ba512eba2.zip DotNetOpenAuth-b53f5530fe1adbd5dccd6ff2743e8e2ba512eba2.tar.gz DotNetOpenAuth-b53f5530fe1adbd5dccd6ff2743e8e2ba512eba2.tar.bz2 |
Moves OpenID coordinator handlers to base class.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs index 5642bc5..a998ef2 100644 --- a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs @@ -132,7 +132,7 @@ namespace DotNetOpenAuth.Test.OpenId.RelyingParty { var se = IdentifierDiscoveryResult.CreateForClaimedIdentifier(claimed_id, claimed_id, providerEndpoint, null, null); var identityUri = (UriIdentifier)se.ClaimedIdentifier; var coordinator = new CoordinatorBase( - CoordinatorBase.RelyingPartyDriver(async (rp, ct) => { + RelyingPartyDriver(async (rp, ct) => { var positiveAssertion = this.GetPositiveAssertion(); positiveAssertion.ClaimedIdentifier = claimed_id; positiveAssertion.LocalIdentifier = claimed_id; |