summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OAuth2
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-07-09 08:35:42 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-07-09 08:35:42 -0700
commit07047811a7dfd1218de8f20393a282391e2f35cc (patch)
treec33caa391a349f108d3de2989e183cf7e9c316d7 /src/DotNetOpenAuth.Test/OAuth2
parent1b8bd07ddd70b8c1f9dc0ae45068a0f7ee7fd82d (diff)
downloadDotNetOpenAuth-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.cs4
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;
}