summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-07-30 08:47:30 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-07-30 08:47:30 -0700
commit7d38eefb65928a1e80036ec006b0e129dc2cface (patch)
tree395690658adf3fc3226d7bb5696f09af7c69b7c9 /src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs
parent5625a18030037a0f088cd3e3581e80ccb68ab187 (diff)
downloadDotNetOpenAuth-7d38eefb65928a1e80036ec006b0e129dc2cface.zip
DotNetOpenAuth-7d38eefb65928a1e80036ec006b0e129dc2cface.tar.gz
DotNetOpenAuth-7d38eefb65928a1e80036ec006b0e129dc2cface.tar.bz2
Multiple client callback URLs are now supported.
And some StyleCop cleanup.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs b/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs
index 2514f68..0e82154 100644
--- a/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs
+++ b/src/DotNetOpenAuth.Test/OAuth2/MessageFactoryTests.cs
@@ -105,7 +105,7 @@ namespace DotNetOpenAuth.Test.OAuth2 {
{ Protocol.client_secret, "abc" },
{ Protocol.grant_type, "basic-credentials" },
{ Protocol.username, "abc" },
- { Protocol.password , "abc" },
+ { Protocol.password, "abc" },
};
IDirectedProtocolMessage request = this.messageFactory.GetNewRequestMessage(this.recipient, fields);
Assert.IsInstanceOf(typeof(AccessTokenResourceOwnerPasswordCredentialsRequest), request);