summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-05-15 19:25:30 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2011-05-15 19:25:30 -0700
commit9ba3d8e9f066132c68501fbc191acd50fba905f4 (patch)
treeba63fe3ca77ea47d2d8a28468454ba1aa6826541 /src/DotNetOpenAuth.Test
parentf55ff22c0d35e6435ff983e0ecca8b44e2bc1449 (diff)
downloadDotNetOpenAuth-9ba3d8e9f066132c68501fbc191acd50fba905f4.zip
DotNetOpenAuth-9ba3d8e9f066132c68501fbc191acd50fba905f4.tar.gz
DotNetOpenAuth-9ba3d8e9f066132c68501fbc191acd50fba905f4.tar.bz2
Updated samples and project template custom stores to use ICryptoKeyStore for RPs.
Diffstat (limited to 'src/DotNetOpenAuth.Test')
-rw-r--r--src/DotNetOpenAuth.Test/OpenId/ChannelElements/OpenIdChannelTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/OpenIdChannelTests.cs b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/OpenIdChannelTests.cs
index a73c355..5e0ccf5 100644
--- a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/OpenIdChannelTests.cs
+++ b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/OpenIdChannelTests.cs
@@ -29,7 +29,7 @@ namespace DotNetOpenAuth.Test.OpenId.ChannelElements {
[SetUp]
public void Setup() {
this.webHandler = new Mocks.TestWebRequestHandler();
- this.channel = new OpenIdChannel(new AssociationMemoryStore(), new NonceMemoryStore(maximumMessageAge), new RelyingPartySecuritySettings());
+ this.channel = new OpenIdChannel(new MemoryCryptoKeyStore(), new NonceMemoryStore(maximumMessageAge), new RelyingPartySecuritySettings());
this.channel.WebRequestHandler = this.webHandler;
}