summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-11-18 22:52:30 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-11-18 22:52:30 -0800
commitc81457905d6c91e77d494c04fe804914013bc215 (patch)
tree9e789b0a9e01b453b742b77ec5a151e4aa5469e4 /src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs
parentf99cd174f54a34ba1399846ddf448a73375e766b (diff)
downloadDotNetOpenAuth-c81457905d6c91e77d494c04fe804914013bc215.zip
DotNetOpenAuth-c81457905d6c91e77d494c04fe804914013bc215.tar.gz
DotNetOpenAuth-c81457905d6c91e77d494c04fe804914013bc215.tar.bz2
Fixed failing unit test bug.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs')
-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 e04edeb..ce548a9 100644
--- a/src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs
+++ b/src/DotNetOpenAuth.Test/OAuth/OAuthCoordinator.cs
@@ -7,6 +7,7 @@
namespace DotNetOpenAuth.Test {
using System;
using DotNetOpenAuth.Messaging;
+ using DotNetOpenAuth.Messaging.Bindings;
using DotNetOpenAuth.OAuth;
using DotNetOpenAuth.OAuth.ChannelElements;
using DotNetOpenAuth.Test.Mocks;
@@ -57,7 +58,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,
};