diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-09 08:35:42 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-09 08:35:42 -0700 |
commit | 07047811a7dfd1218de8f20393a282391e2f35cc (patch) | |
tree | c33caa391a349f108d3de2989e183cf7e9c316d7 /src/DotNetOpenAuth.Test/OAuth2 | |
parent | 1b8bd07ddd70b8c1f9dc0ae45068a0f7ee7fd82d (diff) | |
download | DotNetOpenAuth-07047811a7dfd1218de8f20393a282391e2f35cc.zip DotNetOpenAuth-07047811a7dfd1218de8f20393a282391e2f35cc.tar.gz DotNetOpenAuth-07047811a7dfd1218de8f20393a282391e2f35cc.tar.bz2 |
A bit of OAuth2 channel refactoring.
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 b6b8994..bd830c8 100644 --- a/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs +++ b/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs @@ -20,13 +20,13 @@ namespace DotNetOpenAuth.Test.OAuth2 { /// </summary> public class MessageFactoryTests : OAuth2TestBase { private readonly MessageReceivingEndpoint recipient = new MessageReceivingEndpoint("http://who", HttpDeliveryMethods.PostRequest); - private OAuthWrapAuthorizationServerChannel channel; + private OAuth2AuthorizationServerChannel channel; private IMessageFactory messageFactory; public override void SetUp() { base.SetUp(); - this.channel = new OAuthWrapAuthorizationServerChannel(); + this.channel = new OAuth2AuthorizationServerChannel(); this.messageFactory = OAuthWrapAuthorizationServerChannel_Accessor.AttachShadow(this.channel).MessageFactory; } |