diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-27 06:38:06 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-27 06:38:06 -0700 |
commit | 252a36c147a7a59bddf2298269a1310074d29ab1 (patch) | |
tree | 0a3a3656985afc36d047299c5a5a08c568820b39 /src/DotNetOpenAuth.Test/Mocks/InMemoryTokenManager.cs | |
parent | c0f039c30bc1c26f1dec6108a0a04b588117eb1a (diff) | |
download | DotNetOpenAuth-252a36c147a7a59bddf2298269a1310074d29ab1.zip DotNetOpenAuth-252a36c147a7a59bddf2298269a1310074d29ab1.tar.gz DotNetOpenAuth-252a36c147a7a59bddf2298269a1310074d29ab1.tar.bz2 |
Fixed the namespace of several tests.
Diffstat (limited to 'src/DotNetOpenAuth.Test/Mocks/InMemoryTokenManager.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/Mocks/InMemoryTokenManager.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/InMemoryTokenManager.cs b/src/DotNetOpenAuth.Test/Mocks/InMemoryTokenManager.cs index 35672d7..e11854e 100644 --- a/src/DotNetOpenAuth.Test/Mocks/InMemoryTokenManager.cs +++ b/src/DotNetOpenAuth.Test/Mocks/InMemoryTokenManager.cs @@ -12,6 +12,7 @@ namespace DotNetOpenAuth.Test.Mocks { using DotNetOpenAuth.Messaging; using DotNetOpenAuth.OAuth.ChannelElements; using DotNetOpenAuth.OAuth.Messages; + using DotNetOpenAuth.Test.OAuth; internal class InMemoryTokenManager : IConsumerTokenManager, IServiceProviderTokenManager { private KeyedCollectionDelegate<string, ConsumerInfo> consumers = new KeyedCollectionDelegate<string, ConsumerInfo>(c => c.Key); |