diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-11 06:06:24 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-11 06:06:24 -0700 |
commit | 6cd389c649fdada7d6c80ea3d22a383532990029 (patch) | |
tree | 436f5b534a1a640e3a1e9bdeefd3d62094751b0f /src/DotNetOpenAuth.Test/OAuth2 | |
parent | 6bb5b0db8767e9d7ee98317d2662b4ed5b43b8bf (diff) | |
download | DotNetOpenAuth-6cd389c649fdada7d6c80ea3d22a383532990029.zip DotNetOpenAuth-6cd389c649fdada7d6c80ea3d22a383532990029.tar.gz DotNetOpenAuth-6cd389c649fdada7d6c80ea3d22a383532990029.tar.bz2 |
Trying out a refactoring to better suite user agent clients.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth2')
-rw-r--r-- | src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs b/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs index dbd5187..230dac2 100644 --- a/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs +++ b/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs @@ -50,7 +50,7 @@ namespace DotNetOpenAuth.Test.OAuth2 { { Protocol.code, "abc" }, }; IDirectedProtocolMessage request = this.messageFactory.GetNewRequestMessage(this.recipient, fields); - Assert.IsInstanceOf(typeof(EndUserAuthorizationSuccessResponse), request); + Assert.IsInstanceOf(typeof(EndUserAuthorizationSuccessResponseBase), request); } [TestCase, Ignore("Not yet supported")] @@ -59,7 +59,7 @@ namespace DotNetOpenAuth.Test.OAuth2 { { Protocol.access_token, "abc" }, }; IDirectedProtocolMessage request = this.messageFactory.GetNewRequestMessage(this.recipient, fields); - Assert.IsInstanceOf(typeof(EndUserAuthorizationSuccessResponse), request); + Assert.IsInstanceOf(typeof(EndUserAuthorizationSuccessResponseBase), request); } [TestCase] |