diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-10 16:38:53 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-10 16:38:53 -0700 |
commit | 6beb76839944cf8c35732c5d2a35052c512e3be5 (patch) | |
tree | cb8dd5863a0824f17ecc9d26b9cad343b978cd91 /src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/PositiveAuthenticationResponse.cs | |
parent | 4489eb5418033dc6321c72a58f351df2457b8b8c (diff) | |
download | DotNetOpenAuth-6beb76839944cf8c35732c5d2a35052c512e3be5.zip DotNetOpenAuth-6beb76839944cf8c35732c5d2a35052c512e3be5.tar.gz DotNetOpenAuth-6beb76839944cf8c35732c5d2a35052c512e3be5.tar.bz2 |
More unit test fixes.
Diffstat (limited to 'src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/PositiveAuthenticationResponse.cs')
-rw-r--r-- | src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/PositiveAuthenticationResponse.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/PositiveAuthenticationResponse.cs b/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/PositiveAuthenticationResponse.cs index 79e9f65..c40a6fb 100644 --- a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/PositiveAuthenticationResponse.cs +++ b/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/RelyingParty/PositiveAuthenticationResponse.cs @@ -26,7 +26,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// </summary> /// <param name="response">The positive assertion response that was just received by the Relying Party.</param> /// <param name="relyingParty">The relying party.</param> - private PositiveAuthenticationResponse(PositiveAssertionResponse response, OpenIdRelyingParty relyingParty) + internal PositiveAuthenticationResponse(PositiveAssertionResponse response, OpenIdRelyingParty relyingParty) : base(response) { Requires.NotNull(relyingParty, "relyingParty"); |