summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-10-29 20:58:29 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-10-29 20:58:29 -0700
commit246ef8fe352b7a042c66d7bf535a4bad5f37b088 (patch)
tree4a03f4e320009035ffacd0afb5b5f8f3abaae3a3 /src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
parentfcd4233e17ad57183b41077bc88c80ab81c656ce (diff)
downloadDotNetOpenAuth-246ef8fe352b7a042c66d7bf535a4bad5f37b088.zip
DotNetOpenAuth-246ef8fe352b7a042c66d7bf535a4bad5f37b088.tar.gz
DotNetOpenAuth-246ef8fe352b7a042c66d7bf535a4bad5f37b088.tar.bz2
Fixed build break introduced in 0f5556420674886b14723898890f3b492a3854a8.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs b/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
index 856f164..9bd5cde 100644
--- a/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
+++ b/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
@@ -34,7 +34,7 @@ namespace DotNetOpenAuth.Test.ChannelElements {
this.webRequestHandler = new TestWebRequestHandler();
this.signingElement = new RsaSha1SigningBindingElement(new InMemoryTokenManager());
- this.nonceStore = new NonceMemoryStore(StandardExpirationBindingElement.DefaultMaximumMessageAge);
+ this.nonceStore = new NonceMemoryStore(StandardExpirationBindingElement.MaximumMessageAge);
this.channel = new OAuthChannel(this.signingElement, this.nonceStore, new InMemoryTokenManager(), new TestMessageFactory());
this.accessor = OAuthChannel_Accessor.AttachShadow(this.channel);
this.channel.WebRequestHandler = this.webRequestHandler;