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:41:23 -0700 |
commit | f29ad7a326e2889edb801192c20b291e4245b02f (patch) | |
tree | b2da01de9e67f6dc17050ba3a6b43fde931d14cc /src/DotNetOpenAuth.Test/Mocks/InMemoryTokenManager.cs | |
parent | acaeafb5d752a1183bcad21034459b015ba2549d (diff) | |
download | DotNetOpenAuth-f29ad7a326e2889edb801192c20b291e4245b02f.zip DotNetOpenAuth-f29ad7a326e2889edb801192c20b291e4245b02f.tar.gz DotNetOpenAuth-f29ad7a326e2889edb801192c20b291e4245b02f.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 6980761..c438f46 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); |