summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-11-18 22:54:37 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-11-18 22:54:37 -0800
commit928f544298dd51eb0ac540af9d62c2a760a1ecfb (patch)
tree3b91d8307aabb3fda6e15d0e96379d93896f8ec7 /src/DotNetOpenAuth.Test
parent1dc7805c0cea4f94760250a597fc7a980f4c377b (diff)
parent8aa6439564b60e762e66e0055600a0f1a2348803 (diff)
downloadDotNetOpenAuth-928f544298dd51eb0ac540af9d62c2a760a1ecfb.zip
DotNetOpenAuth-928f544298dd51eb0ac540af9d62c2a760a1ecfb.tar.gz
DotNetOpenAuth-928f544298dd51eb0ac540af9d62c2a760a1ecfb.tar.bz2
Merge branch 'v3.2' into v3.3
Diffstat (limited to 'src/DotNetOpenAuth.Test')
-rw-r--r--src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs3
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,
};