diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-19 22:28:08 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-19 22:28:08 -0800 |
commit | bf833ec35eef4a3514cc8426c36139bc8cca68bc (patch) | |
tree | 8be76aad52f81a154cec08299a0a796c31f21e29 /src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs | |
parent | 2d1eedc3bdf0f58dff78aedc7fc41459ba7af944 (diff) | |
parent | 71ba020b6cdec56990363e4808453da2e80d0e7f (diff) | |
download | DotNetOpenAuth-bf833ec35eef4a3514cc8426c36139bc8cca68bc.zip DotNetOpenAuth-bf833ec35eef4a3514cc8426c36139bc8cca68bc.tar.gz DotNetOpenAuth-bf833ec35eef4a3514cc8426c36139bc8cca68bc.tar.bz2 |
Merge branch 'v3.3'
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs b/src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs index 4373402..5967a03 100644 --- a/src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs +++ b/src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs @@ -8,6 +8,7 @@ namespace DotNetOpenAuth.Test { using System; using System.Diagnostics.Contracts; using DotNetOpenAuth.Messaging; + using DotNetOpenAuth.Messaging.Bindings; using DotNetOpenAuth.OAuth; using DotNetOpenAuth.OAuth.ChannelElements; using DotNetOpenAuth.Test.Mocks; @@ -58,7 +59,7 @@ namespace DotNetOpenAuth.Test { WebConsumer consumer = new WebConsumer(this.serviceDescription, consumerTokenManager) { OAuthChannel = consumerChannel, }; - ServiceProvider serviceProvider = new ServiceProvider(this.serviceDescription, serviceTokenManager) { + ServiceProvider serviceProvider = new ServiceProvider(this.serviceDescription, serviceTokenManager, new NonceMemoryStore()) { OAuthChannel = serviceProviderChannel, }; |