diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-31 11:44:56 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-31 11:44:56 -0700 |
commit | 7265452c16667c6ff499970b0d6778d5184cc8cb (patch) | |
tree | 3dba68ac08d55fa46e2b5c0b52c96d6612b12a2a /src | |
parent | bb7db87b6055db67c17f4096cef182e998e428fa (diff) | |
download | DotNetOpenAuth-7265452c16667c6ff499970b0d6778d5184cc8cb.zip DotNetOpenAuth-7265452c16667c6ff499970b0d6778d5184cc8cb.tar.gz DotNetOpenAuth-7265452c16667c6ff499970b0d6778d5184cc8cb.tar.bz2 |
Fixed a couple of failing unit tests.
Diffstat (limited to 'src')
-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 24868d2..88145d2 100644 --- a/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthorizationServer.cs +++ b/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthorizationServer.cs @@ -175,7 +175,7 @@ namespace DotNetOpenAuth.OAuth2 { authorizationRequest.ClientIdentifier, authorizationRequest.Callback, authCodeResponse.Scope, - authCodeResponse.AuthorizingUsername); + userName); response = authCodeResponse; break; default: |