summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OAuth2/AuthorizationServerTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-03-17 12:22:07 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-03-17 12:22:07 -0700
commit505fb956d0ccda72a5ded14a03a0a21eafd5c9f5 (patch)
tree55de7104db1fb9e548f9befcd29789e74810ac4a /src/DotNetOpenAuth.Test/OAuth2/AuthorizationServerTests.cs
parent719337e7465118c21aa89727c3dbba93e7a192a1 (diff)
downloadDotNetOpenAuth-505fb956d0ccda72a5ded14a03a0a21eafd5c9f5.zip
DotNetOpenAuth-505fb956d0ccda72a5ded14a03a0a21eafd5c9f5.tar.gz
DotNetOpenAuth-505fb956d0ccda72a5ded14a03a0a21eafd5c9f5.tar.bz2
Fixed build breaks in the solution.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth2/AuthorizationServerTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/OAuth2/AuthorizationServerTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuth2/AuthorizationServerTests.cs b/src/DotNetOpenAuth.Test/OAuth2/AuthorizationServerTests.cs
index f3d8feb..3791e28 100644
--- a/src/DotNetOpenAuth.Test/OAuth2/AuthorizationServerTests.cs
+++ b/src/DotNetOpenAuth.Test/OAuth2/AuthorizationServerTests.cs
@@ -28,7 +28,7 @@ namespace DotNetOpenAuth.Test.OAuth2 {
AuthorizationServerMock,
new UserAgentClient(AuthorizationServerDescription),
client => {
- var request = new AccessTokenAuthorizationCodeRequest(AuthorizationServerDescription)
+ var request = new AccessTokenAuthorizationCodeRequestC(AuthorizationServerDescription)
{ ClientIdentifier = ClientId, ClientSecret = ClientSecret, AuthorizationCode = "foo" };
var response = client.Channel.Request<AccessTokenFailedResponse>(request);