diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-28 16:31:42 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-28 16:33:01 -0700 |
commit | 3f01e9b105a551fa7b7f7e54ddabd797328e0a4b (patch) | |
tree | 941889ba2ba02bc356582373849563eea2782225 /src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs | |
parent | 6877b41cb57087bc6ecefcfc5a0f9534a33b2ba8 (diff) | |
download | DotNetOpenAuth-3f01e9b105a551fa7b7f7e54ddabd797328e0a4b.zip DotNetOpenAuth-3f01e9b105a551fa7b7f7e54ddabd797328e0a4b.tar.gz DotNetOpenAuth-3f01e9b105a551fa7b7f7e54ddabd797328e0a4b.tar.bz2 |
Consolidates two OpenID memory app stores
The StandardRelyingPartyApplicationStore and
StandardProviderApplicationStore were equivalent, and thus redundant.
There was also nothing OpenID specific about them. So this consolidates
and renames these types to better reflect their general purpose.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs | 2 |
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 fdf652c..629ca46 100644 --- a/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs +++ b/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs @@ -36,7 +36,7 @@ namespace DotNetOpenAuth.Test.OAuth.ChannelElements { base.SetUp(); this.signingElement = new RsaSha1ServiceProviderSigningBindingElement(new InMemoryTokenManager()); - this.nonceStore = new NonceMemoryStore(StandardExpirationBindingElement.MaximumMessageAge); + this.nonceStore = new MemoryNonceStore(StandardExpirationBindingElement.MaximumMessageAge); this.channel = new OAuthServiceProviderChannel(this.signingElement, this.nonceStore, new InMemoryTokenManager(), this.serviceProviderSecuritySettings, new TestMessageFactory(), this.HostFactories); } |