summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth.Test/ChannelElements/OAuthChannelTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-09-24 20:57:49 -0700
committerAndrew <andrewarnott@gmail.com>2008-09-24 20:57:49 -0700
commitde6a705de31c11ee5892c94cc9afc5c8e49a90ce (patch)
treeace1f83f585c1e84da5f768cb6ed4dbeecb42d57 /src/DotNetOAuth.Test/ChannelElements/OAuthChannelTests.cs
parent22341a07b0ba0dc685bb859b0ed82c22fc3c09db (diff)
downloadDotNetOpenAuth-de6a705de31c11ee5892c94cc9afc5c8e49a90ce.zip
DotNetOpenAuth-de6a705de31c11ee5892c94cc9afc5c8e49a90ce.tar.gz
DotNetOpenAuth-de6a705de31c11ee5892c94cc9afc5c8e49a90ce.tar.bz2
Added a scenario test from Appendix A (incomplete but passing so far).
Included in this change are a lot of fixes and additional implementation.
Diffstat (limited to 'src/DotNetOAuth.Test/ChannelElements/OAuthChannelTests.cs')
-rw-r--r--src/DotNetOAuth.Test/ChannelElements/OAuthChannelTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOAuth.Test/ChannelElements/OAuthChannelTests.cs b/src/DotNetOAuth.Test/ChannelElements/OAuthChannelTests.cs
index 5917d2c..048e1d8 100644
--- a/src/DotNetOAuth.Test/ChannelElements/OAuthChannelTests.cs
+++ b/src/DotNetOAuth.Test/ChannelElements/OAuthChannelTests.cs
@@ -32,7 +32,7 @@ namespace DotNetOAuth.Test.ChannelElements {
this.webRequestHandler = new TestWebRequestHandler();
this.signingElement = new RsaSha1SigningBindingElement();
- this.nonceStore = new NonceMemoryStore();
+ this.nonceStore = new NonceMemoryStore(StandardExpirationBindingElement.DefaultMaximumMessageAge);
this.channel = new OAuthChannel(this.signingElement, this.nonceStore, new TestMessageTypeProvider(), this.webRequestHandler);
}