diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-18 20:53:56 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-18 20:53:56 -0700 |
commit | 639a40d5de04c63a3b103488c5a39440c58455e2 (patch) | |
tree | b409e82320fe9faf822b6989b685a59d515480ab /src/DotNetOpenAuth.OAuth2.AuthorizationServer | |
parent | 53a8ecb2f172a5e41037460116191784476074ba (diff) | |
download | DotNetOpenAuth-639a40d5de04c63a3b103488c5a39440c58455e2.zip DotNetOpenAuth-639a40d5de04c63a3b103488c5a39440c58455e2.tar.gz DotNetOpenAuth-639a40d5de04c63a3b103488c5a39440c58455e2.tar.bz2 |
Fixed another failing unit test.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.AuthorizationServer')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthorizationServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthorizationServer.cs b/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthorizationServer.cs index 722e0a8..e683803 100644 --- a/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthorizationServer.cs +++ b/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthorizationServer.cs @@ -169,7 +169,7 @@ namespace DotNetOpenAuth.OAuth2 { response = accessTokenResponse; break; case EndUserAuthorizationResponseType.AuthorizationCode: - response = new EndUserAuthorizationSuccessAuthCodeResponse(callback, authorizationRequest); + response = new EndUserAuthorizationSuccessAuthCodeResponseAS(callback, authorizationRequest); break; default: throw ErrorUtilities.ThrowInternal("Unexpected response type."); |