summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-03-31 11:44:56 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-03-31 11:44:56 -0700
commit7265452c16667c6ff499970b0d6778d5184cc8cb (patch)
tree3dba68ac08d55fa46e2b5c0b52c96d6612b12a2a /src
parentbb7db87b6055db67c17f4096cef182e998e428fa (diff)
downloadDotNetOpenAuth-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.cs2
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: